1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 01:36:57 +02:00
LeetCode/java/score-after-flipping-matrix.java

23 lines
452 B
Java
Raw Permalink Normal View History

class Solution {
public int matrixScore(int[][] grid) {
int rows = grid.length;
int cols = grid[0].length;
int score = rows * (1 << (cols - 1));
for (int x = 1; x < cols; ++x) {
int same = 0;
for (int y = 0; y < rows; ++y) {
if (grid[y][x] == grid[y][0]) {
++same;
}
}
same = Math.max(same, rows - same);
score += same * (1 << (cols - x - 1));
}
return score;
}
}