-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathHISTOGRA.cpp
41 lines (41 loc) · 1.18 KB
/
HISTOGRA.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
// Ivan Carvalho
// Solution to https://www.spoj.com/problems/HISTOGRA/
#include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> ii;
const int MAXN = 100010;
int vetor[MAXN], antes[MAXN], depois[MAXN], n;
long long resposta;
int main() {
while (scanf("%d", &n) && n) {
resposta = 0;
for (int i = 1; i <= n; i++) {
scanf("%d", &vetor[i]);
}
vetor[0] = -1;
vetor[n + 1] = -1;
stack<ii> pilha;
pilha.push(ii(-1, 0));
for (int i = 1; i <= n + 1; i++) {
ii davez = ii(vetor[i], i);
while (pilha.top().first > davez.first) {
depois[pilha.top().second] = i;
pilha.pop();
}
if (pilha.top().first == davez.first) {
antes[i] = antes[pilha.top().second];
} else {
antes[i] = pilha.top().second;
}
pilha.push(davez);
}
for (int i = 1; i <= n; i++) {
antes[i]++;
depois[i]--;
resposta =
max(resposta, 1LL * (depois[i] - antes[i] + 1) * vetor[i]);
}
printf("%lld\n", resposta);
}
return 0;
}