#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define mp make_pair
#define pb push_back
#define x first
#define y second
#define pii pair<int, int>
#define p3i pair<pii, int>
#define pll pair<ll, ll>
#define p3l pair<pll, ll>
#define lseg L, (L+R)/2, N*2+1
#define rseg (L+R)/2+1, R, N*2+2
#define ub upper_bound
#define lb lower_bound
#define pq priority_queue
#define MN 1000000007
#define fox(k, x) for (int k=0; k<x; ++k)
#define fox1(k, x) for (int k=1; k<=x; ++k)
#define foxr(k, x) for (int k=x-1; k>=0; --k)
#define fox1r(k, x) for (int k=x; k>0; --k)
#define ms multiset
#define flood(x) memset(x, 0x3f3f3f3f, sizeof x)
#define drain(x) memset(x, 0, sizeof x)
#define rng() ((rand() << 14)+rand())
#define scan(X) do{while((X=getchar())<'0'); for(X-='0'; '0'<=(_=getchar()); X=(X<<3)+(X<<1)+_-'0');}while(0)
char _;
#define pi 3.14159265358979323846
int n, a[500005], hi[500005], best, l2, l3, l4;
int main(){
scan(n);
fox(l, n){
scan(a[l]);
//a[l]=l;
best=max(best, a[l]);
for(l2=1, l3=l-1, l4=1; l3>=0; l3-=l2, l2+=2, l4++){
best=max(a[l3]+l4, best);
}
hi[l]=best;
}
best=0;
foxr(l, n){
best=max(best, a[l]);
for(l2=1, l3=l+1, l4=1; l3<n; l3+=l2, l2+=2, l4++){
best=max(a[l3]+l4, best);
}
hi[l]=max(hi[l], best);
}
fox(l, n){
printf("%i\n", hi[l]-a[l]);
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
488 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
488 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
27 ms |
1076 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
57 ms |
1328 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
75 ms |
1348 KB |
Output is correct |
2 |
Correct |
51 ms |
1348 KB |
Output is correct |
3 |
Correct |
77 ms |
1664 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
103 ms |
1880 KB |
Output is correct |
2 |
Correct |
122 ms |
1880 KB |
Output is correct |
3 |
Correct |
132 ms |
2324 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
368 ms |
3528 KB |
Output is correct |
2 |
Correct |
332 ms |
3528 KB |
Output is correct |
3 |
Correct |
354 ms |
4140 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
607 ms |
6824 KB |
Output is correct |
2 |
Correct |
608 ms |
6824 KB |
Output is correct |
3 |
Correct |
633 ms |
6860 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
976 ms |
9436 KB |
Output is correct |
2 |
Correct |
963 ms |
9436 KB |
Output is correct |
3 |
Correct |
990 ms |
9516 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
989 ms |
9516 KB |
Output is correct |
2 |
Execution timed out |
1022 ms |
9516 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |