Problem Description
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).
Key Insights
- Flipping a row or column changes the binary representation of the rows in the matrix.
- The most significant bit (leftmost) contributes the most to the score; hence, we should aim to maximize the number of
1
s in that position. - For each column, we can decide to flip it or not based on the number of
0
s and1
s. - The maximum score can be computed by treating each row as a binary number and maximizing each bit position from left to right.
Space and Time Complexity
Time Complexity: O(m * n)
Space Complexity: O(1)
Solution
To solve the problem, we use the following approach:
- For each row, determine the contribution to the score by evaluating each bit position.
- Start from the most significant bit (leftmost) and calculate its value based on the majority of
1
s in that column. - If there are more
0
s than1
s in a column, consider flipping the column to maximize the number of1
s. - Calculate the total score by summing the values of each row interpreted as binary numbers.