Class Solution
-
- All Implemented Interfaces:
public final class Solution1007 - Minimum Domino Rotations For Equal Row.
Medium
In a row of dominoes,
tops[i]andbottoms[i]represent the top and bottom halves of the <code>i<sup>th</sup></code> domino. (A domino is a tile with two numbers from 1 to 6 - one on each half of the tile.)We may rotate the <code>i<sup>th</sup></code> domino, so that
tops[i]andbottoms[i]swap values.Return the minimum number of rotations so that all the values in
topsare the same, or all the values inbottomsare 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:
<code>2 <= tops.length <= 2 * 10<sup>4</sup></code>
bottoms.length == tops.length1 <= tops[i], bottoms[i] <= 6
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final IntegerminDominoRotations(IntArray tops, IntArray bottoms)-
-
Method Detail
-
minDominoRotations
final Integer minDominoRotations(IntArray tops, IntArray bottoms)
-
-
-
-