2022-03-20 Daily-Challenge
Today I have done leetcode's March LeetCoding Challenge with cpp
.
March LeetCoding Challenge 20
Description
Minimum Domino Rotations For Equal Row
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
Solution
auto speedup = [](){
cin.tie(nullptr);
cout.tie(nullptr);
ios::sync_with_stdio(false);
return 0;
}();
class Solution {
public:
int minDominoRotations(vector<int>& A, vector<int>& B) {
vector<int> AA(6), BB(6), same(6);
int len = A.size();
for(int i = 0; i < len; ++i) {
AA[A[i] - 1] += 1;
BB[B[i] - 1] += 1;
if(A[i] == B[i]) same[A[i] - 1] += 1;
}
for(int i = 0; i < 6; ++i) {
if(AA[i] + BB[i] - same[i] >= len) {
return len - max(AA[i], BB[i]);
}
}
return -1;
}
};
// Accepted
// 83/83 cases passed (84 ms)
// Your runtime beats 100 % of cpp submissions
// Your memory usage beats 10.64 % of cpp submissions (111.7 MB)