Minimum Domino Rotations For Equal Row

In a row of dominoes, A[i] and B[i] represent the top and bottom halves of the i-th domino. (A domino is a tile with two numbers from 1 to 6 - one on each half of the tile.)

We may rotate the i-th domino, so that A[i] and B[i] swap values.

Return the minimum number of rotations so that all the values in A are the same, or all the values in B are the same.

If it cannot be done, return -1.

Example 1:

Input: A = [2,1,2,4,2,2], B = [5,2,6,2,3,2]
Output: 2
Explanation: 
The first figure represents the dominoes as given by A and B: 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: A = [3,5,1,2,3], B = [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.

Note:

  1. 1 <= A[i], B[i] <= 6

  2. 2 <= A.length == B.length <= 20000

class Solution {
    // A = [2,1,2,4,2,2], B = [5,2,6,2,3,2]
    // Just look at first index and find the elements that can take place
    // in the full array (in this case 2 & 5)
    public int minDominoRotations(int[] A, int[] B) {
        // A.length == B.length
        int opt1 = A[0], opt2 = B[0];
        int costToGetOPT1inA = 0, costToGetOPT2inA = 0;
        int costToGetOPT1inB = 0, costToGetOPT2inB = 0;
        for (int i = 0; i < A.length; i++) {
            if (opt1 != A[i] && opt1 != B[i] && opt2 != A[i] && opt2 != B[i])
                return -1;
            // Option 1 in A
            if (A[i] != opt1)
                if (B[i] == opt1 && costToGetOPT1inA != Integer.MAX_VALUE)
                    costToGetOPT1inA++;
                else
                    costToGetOPT1inA = Integer.MAX_VALUE;
            // Option 2 in A
            if (A[i] != opt2)
                if (B[i] == opt2 && costToGetOPT2inA != Integer.MAX_VALUE)
                    costToGetOPT2inA++;
                else
                    costToGetOPT2inA = Integer.MAX_VALUE;
            // Option 1 in B
            if (B[i] != opt1)
                if (A[i] == opt1 && costToGetOPT1inB != Integer.MAX_VALUE)
                    costToGetOPT1inB++;
                else
                    costToGetOPT1inB = Integer.MAX_VALUE;
            // Option 2 in B
            if (B[i] != opt2)
                if (A[i] == opt2 && costToGetOPT2inB != Integer.MAX_VALUE)
                    costToGetOPT2inB++;
                else
                    costToGetOPT2inB = Integer.MAX_VALUE;
        }
        int ans = Math.min(Math.min(costToGetOPT1inA, costToGetOPT2inA), Math.min(costToGetOPT1inB, costToGetOPT2inB));
        return ans == Integer.MAX_VALUE ? -1 : ans;
    }
}

Last updated