[LeetCode] Score After Flipping Matrix

861. Score After Flipping Matrix

You are given an m x n binary matrix grid.

A move consists of choosing any row or column and toggling each value in that row or column (i.e., changing all 0’s to 1’s, and all 1’s to 0’s).

Every row of the matrix is interpreted as a binary number, and the score of the matrix is the sum of these numbers.

Return the highest possible score after making any number of moves (including zero moves).

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class Solution {
public:
int matrixScore(vector<vector<int>>& grid) {
int n = grid.size(), m = grid[0].size(), res = 0;
for(auto& row : grid) {
if(row[0] == 0)
for(auto& col : row)
col = col ? 0 : 1;
}
for(int i = 0; i < m; i++) {
int c = 0;
for(int j = 0; j < n; j++) {
if(grid[j][i]) c++;
}
c = max(c, n - c);
res += c<<(m - 1 -i);
}
return res;
}
};
Author: Song Hayoung
Link: https://songhayoung.github.io/2022/06/21/PS/LeetCode/score-after-flipping-matrix/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.