-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlargest rectangular area in histogram.cpp
181 lines (127 loc) Β· 3.28 KB
/
largest rectangular area in histogram.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*
///////////////////////////////////////////
//Question/Info
Largest Rectangular Area in a Histogram
Find the largest rectangular area possible in a given histogram where the largest rectangle can be made of a number of contiguous bars. For simplicity, assume that all bars have same width and the width is 1 unit.
For example, consider the following histogram with 7 bars of heights {6, 2, 5, 4, 5, 1, 6}. The largest possible rectangle possible is 12 (see the below figure, the max area rectangle is highlighted in red)
author: srj_v
///////////////////////////////////////////
*/
#include <bits/stdc++.h>
using namespace std;
// #define int long long int
#define sbit(x) __builtin_popcount(x)
#define pb(x) push_back(x)
#define mp(x,y) make_pair(x,y)
#define eb(x) emplace_back(x)
#define ct(x) cout << x << "\n";
#define ct2(x,y) cout << x << " " << y << "\n";
#define tc(x) cout << x << " ";
#define tc2(x,y) cout << x << " " << y << " ";
#define forn(i,n) for(int i = 0; i < (int)(n); ++i)
#define forx(i,x,n) for(int i = x; i < (int)(n); ++i)
#define nfor(i,n) for(int i = n-1; i >= 0; --i)
#define all(v) v.begin(),v.end()
#define fsp(x,y) fixed << setprecision(y) << x
#define PI 3.1415926535897932384626433832795
#define MOD 1000000007 // (1e9+7)
#define pii pair<int,int>
#define pis pair<int,string>
#define vi vector<int>
#define vii vector<pii>
#define mii map<int,int>
#define p_q priority_queue // priority_queue<int> (&) priority_queue< int,vi,greater<int> >
#define _IOS ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
typedef long double ld;
typedef long long int lli;
#pragma GCC optimize("Ofast")
void c_p_c()
{
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
}
vi nsl(int arr[], int n) {
stack<pii>ss;
vi v;
forn(i, n) {
if (ss.size() == 0)
{
v.pb(-1);
}
else if (ss.size() > 0 and ss.top().second < arr[i]) {
v.pb(ss.top().first);
}
else if (ss.size() > 0 and ss.top().second >= arr[i]) {
while (ss.size() > 0 and ss.top().second >= arr[i]) {
ss.pop();
}
if (ss.size() == 0) {
v.pb(-1);
}
else {
v.pb(ss.top().first);
}
}
ss.push({i, arr[i]});
}
return v;
}
vi nsr(int arr[], int n) {
stack<pii>ss;
vi v;
nfor(i, n) {
if (ss.size() == 0)
{
v.pb(n);
}
else if (ss.size() > 0 and ss.top().second < arr[i]) {
v.pb(ss.top().first);
}
else if (ss.size() > 0 and ss.top().second >= arr[i]) {
while (ss.size() > 0 and ss.top().second >= arr[i]) {
ss.pop();
}
if (ss.size() == 0) {
v.pb(-1);
}
else {
v.pb(ss.top().first);
}
}
ss.push({i, arr[i]});
}
reverse(all(v));
return v;
}
int lrah(int arr[], int n) {
vi v1 = nsl(arr, n);
vi v2 = nsr(arr, n);
int w[n];
forn(i, n) {
w[i] = abs(v1[i] - v2[i]) - 1;
}
int ans[n];
forn(i, n) {
ans[i] = arr[i] * w[i];
}
int x = *max_element(ans, ans + n);
return (x);
}
int32_t main() {
///////////
c_p_c();
///////////
_IOS
//////////
// code
/*
int t ; cin >> t; while(t--){}
*/
int arr[] = {6, 2, 5, 4, 5, 1, 6};
int n = sizeof arr / sizeof arr[0];
cout << lrah(arr, n);
// cerr << "time: " << clock() << " ms" << '\n';
return 0;
}