-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathlargest_rectangle_in_histogram.rb
56 lines (52 loc) · 1.41 KB
/
largest_rectangle_in_histogram.rb
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
# https://leetcode.com/problems/largest-rectangle-in-histogram/
#
# Given n non-negative integers representing the histogram's bar height where
# the width of each bar is 1, find the area of largest rectangle in the
# histogram.
#
# 6
# ___
# 5 | |
# ___| |
# | | |
# | | |
# | | | 3
# | | | ___
# 2 | | | 2 | |
# ___ | | |___| |
# | | 1 | | | | |
# | |___| | | | |
# | | | | | | |
# |___|___|___|___|___|___|
#
#
# 6
# ___
# 5 | |
# ___|___|
# |+-+|+-+|
# |+-+|+-+|
# |+-+|+-+| 3
# |+-+|+-+| ___
# 2 |+-+|+-+| 2 | |
# ___ |+-+|+-+|___| |
# | | 1 |+-+|+-+| | |
# | |___|+-+|+-+| | |
# | | |+-+|+-+| | |
# |___|___|+-+|+-+|___|___|
#
# For example, Given height = [2, 1, 5, 6, 2, 3], return 10.
# @param {Integer[]} height
# @return {Integer}
def largest_rectangle_area(height)
maxarea = 0
height, stack = (height << 0), [-1]
height.each_with_index do |h, i|
while h < height[stack[-1]]
subarea = height[stack.pop] * (i - 1 - stack[-1])
maxarea = subarea if maxarea < subarea
end
stack.push(i)
end
maxarea
end