#include <bits/stdc++.h>
using namespace std;
const int N = (int) 5e5 + 7;
const int K = 19;
const int INF = (int) 1e9 + 7;
int n;
int q;
int a[N];
int lg[N];
int maxA[K][N];
int nextBigger[N];
int getMaxA(int l, int r) {
if (l > r) {
return -INF;
}
assert(1 <= l && l <= r && r <= n);
int k = lg[r - l + 1];
return max(maxA[k][l], maxA[k][r - (1 << k) + 1]);
}
struct Offer {
int value;
int lft;
int rgh;
};
signed main() {
ios::sync_with_stdio(0); cin.tie(0);
//freopen ("input", "r", stdin);
cin >> n;
for (int i = 2; i <= n; i++) {
lg[i] = lg[i / 2] + 1;
}
for (int i = 1; i <= n; i++) {
cin >> a[i];
maxA[0][i] = a[i];
}
for (int k = 1; (1 << k) <= n; k++) {
for (int i = 1; i + (1 << k) - 1 <= n; i++) {
maxA[k][i] = max(maxA[k - 1][i], maxA[k - 1][i + (1 << (k - 1))]);
}
}
{ /// just some stack bro
vector<int> stk;
for (int i = n; i >= 1; i--) {
while (!stk.empty() && a[i] >= a[stk.back()]) {
stk.pop_back();
}
nextBigger[i] = (stk.empty() ? (n + 1) : stk.back());
stk.push_back(i);
}
}
vector<Offer> offers;
for (int i = 1; i <= n; i++) {
for (int j = i + 1; j <= min(n, nextBigger[i]); j = nextBigger[j]) {
if (2 * j - i <= n) {
offers.push_back({a[i] + a[j], i, 2 * j - i});
}
}
}
cin >> q;
for (int iq = 1; iq <= q; iq++) {
int l, r, best = 0;
cin >> l >> r;
for (auto &offer : offers) {
if (l <= offer.lft) {
best = max(best, offer.value + getMaxA(offer.rgh, r));
}
}
cout << best << "\n";
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
332 KB |
Output is correct |
2 |
Correct |
1 ms |
332 KB |
Output is correct |
3 |
Correct |
1 ms |
332 KB |
Output is correct |
4 |
Correct |
0 ms |
332 KB |
Output is correct |
5 |
Correct |
1 ms |
332 KB |
Output is correct |
6 |
Correct |
1 ms |
332 KB |
Output is correct |
7 |
Correct |
0 ms |
332 KB |
Output is correct |
8 |
Correct |
1 ms |
332 KB |
Output is correct |
9 |
Correct |
0 ms |
332 KB |
Output is correct |
10 |
Correct |
1 ms |
332 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
332 KB |
Output is correct |
2 |
Correct |
1 ms |
332 KB |
Output is correct |
3 |
Correct |
1 ms |
332 KB |
Output is correct |
4 |
Correct |
0 ms |
332 KB |
Output is correct |
5 |
Correct |
1 ms |
332 KB |
Output is correct |
6 |
Correct |
1 ms |
332 KB |
Output is correct |
7 |
Correct |
0 ms |
332 KB |
Output is correct |
8 |
Correct |
1 ms |
332 KB |
Output is correct |
9 |
Correct |
0 ms |
332 KB |
Output is correct |
10 |
Correct |
1 ms |
332 KB |
Output is correct |
11 |
Execution timed out |
4050 ms |
3292 KB |
Time limit exceeded |
12 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
36 ms |
22056 KB |
Output is correct |
2 |
Correct |
38 ms |
20436 KB |
Output is correct |
3 |
Correct |
35 ms |
19000 KB |
Output is correct |
4 |
Correct |
46 ms |
22236 KB |
Output is correct |
5 |
Correct |
38 ms |
22068 KB |
Output is correct |
6 |
Correct |
34 ms |
22088 KB |
Output is correct |
7 |
Correct |
33 ms |
22072 KB |
Output is correct |
8 |
Correct |
33 ms |
22068 KB |
Output is correct |
9 |
Correct |
35 ms |
22088 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
332 KB |
Output is correct |
2 |
Correct |
1 ms |
332 KB |
Output is correct |
3 |
Correct |
1 ms |
332 KB |
Output is correct |
4 |
Correct |
0 ms |
332 KB |
Output is correct |
5 |
Correct |
1 ms |
332 KB |
Output is correct |
6 |
Correct |
1 ms |
332 KB |
Output is correct |
7 |
Correct |
0 ms |
332 KB |
Output is correct |
8 |
Correct |
1 ms |
332 KB |
Output is correct |
9 |
Correct |
0 ms |
332 KB |
Output is correct |
10 |
Correct |
1 ms |
332 KB |
Output is correct |
11 |
Execution timed out |
4050 ms |
3292 KB |
Time limit exceeded |
12 |
Halted |
0 ms |
0 KB |
- |