Minimum Domino Rotations For Equal Row - LeetCode
In a row of dominoes, tops[i] and bottoms[i] represent the top and bottom halves of the ith domino. (A domino is a tile with two numbers from 1 to 6 - one on each half of the tile.) We may rotate the ith domino, so that tops[i] and bottoms[i] swap values. Return the minimum number of rotations so that all the values in tops are the same, or all the values in bottoms are the same. If it cannot be done, return -1.
Example 1: Input: tops = [2,1,2,4,2,2], bottoms = [5,2,6,2,3,2] Output: 2 Explanation: The first figure represents the dominoes as given by tops and bottoms: before we do any rotations. If we rotate the second and fourth dominoes, we can make every value in the top row equal to 2, as indicated by the second figure. Example 2: Input: tops = [3,5,1,2,3], bottoms = [3,6,3,3,4] Output: -1 Explanation: In this case, it is not possible to rotate the dominoes to make one row of values equal.
Constraints:
2 <= tops.length <= 2 * 104
bottoms.length == tops.length
1 <= tops[i], bottoms[i] <= 6
- code
class Solution:
def minDominoRotations(self, tops: List[int], bottoms: List[int]) -> int:
n = len(tops)
def check(a, b):
ct = 0
for i in range(n):
if tops[i] != a:
if bottoms[i] == a:
ct += 1
else:
ct = inf
break
ct2 = 0
for i in range(n):
if bottoms[i] != b:
if tops[i] == b:
ct2 += 1
else:
ct2 = inf
break
return min(ct, ct2)
ct = check(tops[0], bottoms[0])
ct2 = check(bottoms[0], tops[0])
return -1 if min(ct, ct2) == inf else min(ct, ct2)
- code
class Solution:
def minDominoRotations(self, A: List[int], B: List[int]) -> int:
def check(x):
rotations_a = rotations_b = 0
for i in range(n):
if A[i] != x and B[i] != x:
return -1
elif A[i] != x:
rotations_a += 1
elif B[i] != x:
rotations_b += 1
return min(rotations_a, rotations_b)
n = len(A)
rotations = check(A[0])
if rotations != -1 or A[0] == B[0]:
return rotations
else:
return check(B[0])