#include <bits/stdc++.h>
#define pb push_back
using namespace std;
#include "shortcut.h"
long long inf = 1e16;
long long find_shortcut(int n, vector<int> l, vector<int> d, int c){
vector<long long> pre(n);
for(int i = 0; i < n-1; i++){
pre[i+1] = pre[i] + l[i];
}
vector<long long> lfar(n), rfar(n);
lfar[0] = d[0];
for(int i = 1; i < n; i++){
if(d[i] > lfar[i-1] + l[i-1]) lfar[i] = d[i];
else lfar[i] = lfar[i-1] + l[i-1];
}
rfar[n-1] = d[n-1];
for(int i = n-2; i >= 0; i--){
if(d[i] > rfar[i+1] + l[i]) rfar[i] = d[i];
else rfar[i] = rfar[i+1] + l[i];
}
long long ans = inf;
for(int l = 0; l < n; l++){
for(int r = l+1; r < n; r++){
if(pre[r] - pre[l] < c) continue;
long long dis = 0;
long long clen = pre[r] - pre[l] + c;
dis = lfar[l] + rfar[r] + c; // L-R
for(int j = l+1; j <= r; j++){
dis = max(dis, lfar[l] + min(pre[j] - pre[l], clen - (pre[j] - pre[l])) + (long long)d[j]);
} // L-M
for(int j = l; j < r; j++){
dis = max(dis, rfar[r] + min(pre[r] - pre[j], clen - (pre[r] - pre[j])) + (long long)d[j]);
} // R-M
for(int j = l; j < r; j++){
for(int j2 = j+1; j2 <= r; j2++){
dis = max(dis, min(pre[j2] - pre[j], clen - (pre[j2] - pre[j])) + (long long)d[j] + (long long)d[j2]);
}
}
ans = min(ans, dis);
}
}
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
1 ms |
336 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
1 ms |
336 KB |
n = 4, incorrect answer: jury 21 vs contestant 14 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
1 ms |
336 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
1 ms |
336 KB |
n = 4, incorrect answer: jury 21 vs contestant 14 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
1 ms |
336 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
1 ms |
336 KB |
n = 4, incorrect answer: jury 21 vs contestant 14 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
1 ms |
336 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
1 ms |
336 KB |
n = 4, incorrect answer: jury 21 vs contestant 14 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
1 ms |
336 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
1 ms |
336 KB |
n = 4, incorrect answer: jury 21 vs contestant 14 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
1 ms |
336 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
1 ms |
336 KB |
n = 4, incorrect answer: jury 21 vs contestant 14 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
1 ms |
336 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
1 ms |
336 KB |
n = 4, incorrect answer: jury 21 vs contestant 14 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
1 ms |
336 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
1 ms |
336 KB |
n = 4, incorrect answer: jury 21 vs contestant 14 |
4 |
Halted |
0 ms |
0 KB |
- |