#include <bits/stdc++.h>
#define uwu return 0;
using namespace std;
const int SIZE = 2e3 + 5;
int N, Q;
const long long INF = 3e18 + 5;
long long L[SIZE], R[SIZE], W[SIZE], X[SIZE];
#define fs first
#define sc second
int main(){
cin >> N >> Q;
X[N + 1] = INF;
X[0] = -INF;
for (int i = 1; i <= N;i++){
cin >> X[i];
W[i] = 0;
}
long long in_W, mnL = 0, mxR = 0, nX = 0;
multiset <pair<long long, long long>> opW;
opW.insert({0, 0});
for (int i = 1; i <= Q;i++){
cin >> in_W;
nX += in_W;
mnL = min(nX, mnL);
mxR = max(nX, mxR);
opW.insert({mxR - mnL, mxR});
}
/*
for(auto i:opW){
cout << i.fs << ' ' << i.sc << '\n';
}
*/
pair<long long, long long> tmp, pretmp;
W[1] += -mnL;
W[N] += mxR;
long long L, R;
for (int i = 1; i < N;i++){
tmp = *opW.lower_bound({X[i + 1] - X[i], 0LL});
pretmp = *prev(opW.lower_bound({X[i + 1] - X[i], 0LL}));
if(opW.lower_bound({X[i + 1] - X[i], 0LL}) == opW.end()){
tmp = {mxR - mnL, mxR};
}
L = pretmp.fs - pretmp.sc;
R = tmp.sc;
W[i] += min(min(R, X[i + 1] - X[i] - L), mxR);
W[i + 1] += min(max(L, X[i + 1] - X[i] - R), -mnL);
//cout << W[i] << ' ' << W[i + 1] << ' ' << min(R, X[i + 1] - X[i] - L) << '\n';
}
for (int i = 1; i <= N;i++){
cout << W[i] << '\n';
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
344 KB |
Output is correct |
3 |
Correct |
1 ms |
348 KB |
Output is correct |
4 |
Correct |
2 ms |
592 KB |
Output is correct |
5 |
Correct |
2 ms |
604 KB |
Output is correct |
6 |
Correct |
2 ms |
348 KB |
Output is correct |
7 |
Correct |
2 ms |
604 KB |
Output is correct |
8 |
Correct |
2 ms |
600 KB |
Output is correct |
9 |
Correct |
2 ms |
604 KB |
Output is correct |
10 |
Correct |
2 ms |
348 KB |
Output is correct |
11 |
Correct |
2 ms |
348 KB |
Output is correct |
12 |
Correct |
0 ms |
348 KB |
Output is correct |
13 |
Correct |
1 ms |
600 KB |
Output is correct |
14 |
Correct |
1 ms |
348 KB |
Output is correct |
15 |
Correct |
2 ms |
600 KB |
Output is correct |
16 |
Correct |
2 ms |
604 KB |
Output is correct |
17 |
Correct |
2 ms |
604 KB |
Output is correct |
18 |
Correct |
0 ms |
348 KB |
Output is correct |
19 |
Correct |
2 ms |
344 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
344 KB |
Output is correct |
3 |
Correct |
1 ms |
348 KB |
Output is correct |
4 |
Correct |
2 ms |
592 KB |
Output is correct |
5 |
Correct |
2 ms |
604 KB |
Output is correct |
6 |
Correct |
2 ms |
348 KB |
Output is correct |
7 |
Correct |
2 ms |
604 KB |
Output is correct |
8 |
Correct |
2 ms |
600 KB |
Output is correct |
9 |
Correct |
2 ms |
604 KB |
Output is correct |
10 |
Correct |
2 ms |
348 KB |
Output is correct |
11 |
Correct |
2 ms |
348 KB |
Output is correct |
12 |
Correct |
0 ms |
348 KB |
Output is correct |
13 |
Correct |
1 ms |
600 KB |
Output is correct |
14 |
Correct |
1 ms |
348 KB |
Output is correct |
15 |
Correct |
2 ms |
600 KB |
Output is correct |
16 |
Correct |
2 ms |
604 KB |
Output is correct |
17 |
Correct |
2 ms |
604 KB |
Output is correct |
18 |
Correct |
0 ms |
348 KB |
Output is correct |
19 |
Correct |
2 ms |
344 KB |
Output is correct |
20 |
Correct |
104 ms |
12872 KB |
Output is correct |
21 |
Correct |
88 ms |
12884 KB |
Output is correct |
22 |
Correct |
85 ms |
12924 KB |
Output is correct |
23 |
Correct |
96 ms |
12852 KB |
Output is correct |
24 |
Runtime error |
1 ms |
348 KB |
Execution killed with signal 11 |
25 |
Halted |
0 ms |
0 KB |
- |