-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLargest-rectangle-in-histogram
More file actions
72 lines (64 loc) · 1.97 KB
/
Largest-rectangle-in-histogram
File metadata and controls
72 lines (64 loc) · 1.97 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//brute force approach
class Solution {
public int largestRectangleArea(int[] heights) {
int res = 0;
int n = heights.length;
for (int i = 0; i < n; i++) {
int curr = heights[i];
for (int j = i - 1; j >= 0; j--) {
if (heights[j] >= heights[i])
curr += heights[i];
else
break;
}
for (int j = i + 1; j < n; j++) {
if (heights[j] >= heights[i])
curr += heights[i];
else
break;
}
res = Math.max(res, curr);
}
return res;
}
}
// optimzation Solution
class Solution {
public int[] previousSmaller(int[] heights) {
int n = heights.length;
int[] ans = new int[n];
Stack<Integer> stack = new Stack<>();
for (int i = 0; i < n; i++) {
while (!stack.isEmpty() && heights[stack.peek()] >= heights[i]) {
stack.pop();
}
ans[i] = stack.isEmpty() ? -1 : stack.peek();
stack.push(i);
}
return ans;
}
public int[] nextSmaller(int[] heights) {
int n = heights.length;
int[] ans = new int[n];
Stack<Integer> stack = new Stack<>();
for (int i = n - 1; i >= 0; i--) {
while (!stack.isEmpty() && heights[stack.peek()] >= heights[i]) {
stack.pop();
}
ans[i] = stack.isEmpty() ? n : stack.peek();
stack.push(i);
}
return ans;
}
public int largestRectangleArea(int[] heights) {
int n = heights.length;
int res = 0;
int[] ps = previousSmaller(heights);
int[] ns = nextSmaller(heights);
for (int i = 0; i < n; i++) {
int curr = (ns[i] - ps[i] - 1) * heights[i];
res = Math.max(res, curr);
}
return res;
}
}