-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0085. Maximal Rectangle
57 lines (56 loc) · 1.88 KB
/
0085. Maximal Rectangle
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
46
47
48
49
50
51
52
53
54
55
56
57
class Solution {
public int maximalRectangle(char[][] matrix) {
int max = 0;
int m = matrix.length;
int n = matrix[0].length;
int[][] sum = new int[m][n];
for(int j = 0; j < n; j++) {
sum[0][j] = matrix[0][j] - '0';
}
if(m > 1) {
for(int r = 1; r < m; r++) {
for(int c = 0; c < n; c++) {
if(matrix[r][c] == '1') {
sum[r][c] = sum[r - 1][c] + 1;
}
else {
sum[r][c] = 0;
}
}
}
}
for(int i = 0; i < m; i++) {
int[] leftFirstMin = new int[n];
int[] rightFirstMin = new int[n];
Deque<Integer> qu = new LinkedList<>();
for(int j = 0; j < n; j++) {
while(!qu.isEmpty() && sum[i][j] < sum[i][qu.peekLast()]) {
int top = qu.pollLast();
rightFirstMin[top] = j - 1;
}
qu.addLast(j);
}
while(!qu.isEmpty()) {
int top = qu.pollLast();
rightFirstMin[top] = n - 1;
}
for(int j = n - 1; j > -1; j--) {
while(!qu.isEmpty() && sum[i][j] < sum[i][qu.peekLast()]) {
int top = qu.pollLast();
leftFirstMin[top] = j + 1;
}
qu.addLast(j);
}
while(!qu.isEmpty()) {
int top = qu.pollLast();
leftFirstMin[top] = 0;
}
for(int j = 0; j < n; j++) {
int l = leftFirstMin[j];
int r = rightFirstMin[j];
max = Math.max(max, sum[i][j] * (r - l + 1));
}
}
return max;
}
}