-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgkg_largest_rectangle.cpp
56 lines (51 loc) · 1016 Bytes
/
gkg_largest_rectangle.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
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair <int, int> ii;
typedef vector< ii > vii;
typedef vector <int> vi;
#define INF 1000000000
int scan(){
register int c = getchar_unlocked();
register int n = 0;
for( ; (c<48 || c>57); c = getchar_unlocked() );
for( ; (c>47 && c<58); c = getchar_unlocked() ){
n = (n<<1) + (n<<3) +c -48;
}
return n;
}
int maxarea(int a[],int n){
int curr_area,max_area=0;
stack <int> s;
int i=0;
while(i<n){
if(s.empty() || a[s.top()]<=a[i]){
s.push(i++);
}
else{
int x=s.top();
s.pop();
curr_area=a[x]*(s.empty()?i:i-s.top()-1);
if(curr_area>max_area)
max_area=curr_area;
}
}
while(!s.empty()){
int x=s.top();
s.pop();
curr_area=a[x]*(s.empty()?i:i-s.top()-1);
if(curr_area>max_area)
max_area=curr_area;
}
return max_area;
}
int main(){
int n;
cin>>n;
int a[n];
for(int i=0;i<n;i++){
cin>>a[i];
}
cout<<maxarea(a,n)<<endl;
return 0;
}