#include <bits/stdc++.h>
#include "shortcut.h"
using namespace std;
const int MAX_N = 3005;
const long long INF = 1e18 + 7;
int n;
multiset <pair <int, int>> graph[MAX_N];
long long qsl[MAX_N];
long long preLeft[MAX_N], preRight[MAX_N];
long long dp1[MAX_N][MAX_N], dp2[MAX_N][MAX_N];
long long find_shortcut(int n, vector <int> l, vector <int> d, int c) {
::n = n;
for (int i = 1; i < n; i++) qsl[i] = qsl[i - 1] + l[i - 1];
long long tmp = -qsl[0] + d[0];
for (int i = 1; i < n; i++) {
preLeft[i] = tmp + qsl[i] + d[i];
tmp = max(tmp, -qsl[i] + d[i]);
}
tmp = qsl[n - 1] + d[n - 1];
for (int i = n - 2; i >= 0; i--) {
preRight[i] = tmp - qsl[i] + d[i];
tmp = max(tmp, qsl[i] + d[i]);
}
for (int i = 0; i <= n - 2; i++) {
for (int j = i + 1; j <= n - 1; j++) {
dp1[i][j] = qsl[j] - qsl[i] + d[i] + d[j];
dp2[i][j] = qsl[i] - qsl[j] + d[i] + d[j] + c;
}
}
for (int s = 0; s < n; s++) {
for (int i = 0, j = s; j < n; i++, j++) {
dp1[i][j] = max(dp1[i - 1][j], dp1[i][j - 1]);
dp2[i][j] = max(dp2[i - 1][j], dp2[i][j - 1]);
}
}
long long ans = INF;
for (int i = 0; i < n; i++) {
for (int j = i + 1; j < n; j++) {
long long maxleft = 0, maxright = 0;
for (int k = i; k >= 0; k--) maxleft = max(maxleft, qsl[i] - qsl[k] + d[k]);
for (int k = j; k < n; k++) maxright = max(maxright, qsl[k] - qsl[j] + d[k]);
long long max_dist = maxleft + maxright + min(qsl[j] - qsl[i], 1ll * c);
for (int k = i + 1; k <= j - 1; k++) {
max_dist = max(max_dist, maxleft + min(qsl[k] - qsl[i], qsl[j] - qsl[k] + c) + d[k]);
max_dist = max(max_dist, maxright + min(qsl[j] - qsl[k], qsl[k] - qsl[i] + c) + d[k]);
}
// for (int k = i + 1; k <= j - 2; k++) {
// for (int l = k + 1; l <= j - 1; l++) max_dist = max(max_dist, min(qsl[l] - qsl[k], qsl[k] - qsl[i] + qsl[j] - qsl[l] + c) + d[k] + d[l]);
// }
max_dist = max(max_dist, min(dp1[i][j], dp2[i][j] + qsl[j] - qsl[i]));
max_dist = max(max_dist, max(preLeft[i], preRight[j]));
// cout << i << ' ' << j << ' ' << max_dist << endl;
ans = min(ans, max_dist);
}
}
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
468 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
0 ms |
468 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
1 ms |
468 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 |
468 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
0 ms |
468 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
1 ms |
468 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 |
468 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
0 ms |
468 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
1 ms |
468 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 |
468 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
0 ms |
468 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
1 ms |
468 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 |
468 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
0 ms |
468 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
1 ms |
468 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 |
468 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
0 ms |
468 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
1 ms |
468 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 |
468 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
0 ms |
468 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
1 ms |
468 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 |
468 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
0 ms |
468 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
1 ms |
468 KB |
n = 4, incorrect answer: jury 21 vs contestant 14 |
4 |
Halted |
0 ms |
0 KB |
- |