-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path0861-score-after-flipping-matrix.js
45 lines (40 loc) · 1.16 KB
/
0861-score-after-flipping-matrix.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
* 861. Score After Flipping Matrix
* https://leetcode.com/problems/score-after-flipping-matrix/
* Difficulty: Medium
*
* 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).
*/
/**
* @param {number[][]} grid
* @return {number}
*/
var matrixScore = function(grid) {
const rows = grid.length;
const cols = grid[0].length;
for (let row = 0; row < rows; row++) {
if (grid[row][0] === 0) {
for (let col = 0; col < cols; col++) {
grid[row][col] ^= 1;
}
}
}
let result = rows * (1 << (cols - 1));
for (let col = 1; col < cols; col++) {
let onesCount = 0;
for (let row = 0; row < rows; row++) {
onesCount += grid[row][col];
}
const maxOnes = Math.max(onesCount, rows - onesCount);
result += maxOnes * (1 << (cols - 1 - col));
}
return result;
};