861. Score After Flipping Matrix
Input: [[0,0,1,1],[1,0,1,0],[1,1,0,0]]
Output: 39
Explanation:
Toggled to [[1,1,1,1],[1,0,0,1],[1,1,1,1]].
0b1111 + 0b1001 + 0b1111 = 15 + 9 + 15 = 39// Greedy Method
int matrixScore(vector<vector<int>>& A) { // time: O(m * n); space: O(1)
int m = A.size(), n = A[0].size(), res = m * (1 << (n - 1));
for (int j = 1; j < n; ++j) {
int cnt = 0;
for (int i = 0; i < m; ++i) cnt += A[i][j] == A[i][0];
res += max(cnt, m - cnt) * (1 << (n - 1 - j));
}
return res;
}Last updated