Leetcode 1727. Largest Submatrix With Rearrangements
Greedy | Sort
PreviousLeetCode 1676. Lowest Common Ancestor of a Binary Tree IVNextLeetCode 1751. Maximum Number of Events That Can Be Attended II
Last updated
Greedy | Sort
Last updated
Input: matrix = [[0,0,1],[1,1,1],[1,0,1]]
Output: 4
Explanation: You can rearrange the columns as shown above.
The largest submatrix of 1s, in bold, has an area of 4.Input: matrix = [[1,0,1,0,1]]
Output: 3
Explanation: You can rearrange the columns as shown above.
The largest submatrix of 1s, in bold, has an area of 3.Input: matrix = [[1,1,0],[1,0,1]]
Output: 2
Explanation: Notice that you must rearrange entire columns, and there is no way to make a submatrix of 1s larger than an area of 2.Input: matrix = [[0,0],[0,0]]
Output: 0
Explanation: As there are no 1s, no submatrix of 1s can be formed and the area is 0.class Solution {
public:
int largestSubmatrix(vector<vector<int>>& matrix) {
int m = matrix.size();
int n = matrix.front().size();
for (int j = 0; j < n; j++) {
for (int i = m-1; i >= 0; i--) {
if (matrix[i][j] == 1 && i != (m-1)) {
matrix[i][j] = 1 + matrix[i+1][j];
}
}
}
int ans = 0;
for (int i = 0; i < m; i++) {
sort(matrix[i].begin(), matrix[i].end(), std::greater<int>());
for (int w = 0; w < matrix[i].size(); w++) {
if (matrix[i][w] == 0) break;
ans = max(ans, (w+1) * matrix[i][w]);
}
}
return ans;
}
};