forked from TARANG0503/DSA-Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlargest_rect_histogram_area.cpp
90 lines (70 loc) · 2.29 KB
/
largest_rect_histogram_area.cpp
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*Problem statement: Given an array of integers heights representing
the histogram's bar height where the width of each bar is 1,
return the area of the largest rectangle in the histogram.
Input: array = {2,1,5,6,2,3} //heights of each bar
Output: 10
*/
#include<bits/stdc++.h>
using namespace std;
//Function to find largest rectangular area in histogram
long long getMaxArea(long long arr[], int n)
{
//we maintain two arrays of size n
//lb : for storing indexes of nearest smallest element on left
//rb : for storing indexes of nearest smallest element on right
vector<long long> lb, rb;
//create an empty stack
stack<long long>s;
s.push(0);
// push -1 to the stack for elements with no previous smaller element
lb.push_back(-1);
//for lb[n]
for(int i=1;i<n;++i)
{
//pop the indexes till we find the smaller bar value index
while(!s.empty() && arr[i]<=arr[s.top()])
s.pop();
if(s.empty())
lb.push_back(-1);
else
lb.push_back(s.top());
s.push(i);
}
while(!s.empty())
s.pop();
s.push(n-1);
// push n to the stack for elements with no next smaller element
rb.push_back(n);
//for rb[n]
for(int i=n-2;i>=0;--i)
{
//pop the indexes till we find the smaller bar value index
while(!s.empty() && arr[i]<=arr[s.top()])
s.pop();
if(s.empty())
rb.push_back(n);
else
rb.push_back(s.top());
s.push(i);
}
reverse(rb.begin(),rb.end());
//Finding the max width of rectangle and corresponding maxArea for each bar
//and finding max resultant area among them
long long maxArea=0, width;
for(int i=0;i<n;++i)
{
width=rb[i]-lb[i]-1;
maxArea=max(maxArea , width*arr[i]);
}
return maxArea;
}
//Driver code
int main(){
int n;
cin>>n;
long long arr[n];
for(int i=0;i<n;++i)
cin>>arr[i];
cout<<getMaxArea(arr,n)<<endl;
return 0;
}