LeetCode #1007. 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 {
public:
    int minDominoRotations(vector<int>& A, vector<int>& B) {
        // 最终结果必然是让A或B全部变成A[0]或B[0],那么令这两个数作为候选
        int a=A[0], b=B[0];
        for(int i=1;i<A.size();i++)
        {
            if(A[i]!=a&&B[i]!=a) a=-1;
            if(A[i]!=b&&B[i]!=b) b=-1;
            if(a==-1&&b==-1) return -1;
        }
        
        int c=a!=-1?a:b;
        int count1=0, count2=0;
        for(int i=0;i<A.size();i++)
        {
            if(A[i]!=c) count1++;
            if(B[i]!=c) count2++;
        }
        return min(count1,count2);
    }
};

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值