#include "shortcut.h"
#include<bits/stdc++.h>
using namespace std;
int N;
long long t[508], ct, diam=0;
long long dst[508], calc[508];
long long pr[508];
long long pr_le[508], pr_ri[508];
void precalc()
{
for(int i=1; i<N; i++) pr[i]=pr[i-1]+dst[i];
for(int i=0; i<N; i++)
{
for(int j=0; j<=i; j++) if(pr[i]-pr[j]+t[j]>pr_le[i]) pr_le[i]=pr[i]-pr[j]+t[j];
for(int j=i; j<N; j++) if(pr[j]-pr[i]+t[j]>pr_ri[i]) pr_ri[i]=pr[j]-pr[i]+t[j];
}
}
long long find_diam(int le, int ri)
{
if(ct>pr[ri]-pr[le]) return diam;
swap(t[le], pr_le[le]);
swap(t[ri], pr_ri[ri]);
long long md=0, sum=pr[ri]-pr[le]+ct;
for(int i=le; i<=ri; i++)
{
for(int j=i+1; j<=ri; j++)
{
long long st1=pr[j]-pr[i]+t[j]+t[i], st2=sum-pr[j]+pr[i]+t[j]+t[i];
if(min(st1, st2)> md) md=min(st1, st2);
}
}
swap(t[le], pr_le[le]);
swap(t[ri], pr_ri[ri]);
return md;
}
int bst[508];
long long find_shortcut(int n, std::vector<int> l, std::vector<int> d, int c)
{
N=n;
ct=c;
for(int i=0; i<n; i++) t[i]=d[i];
for(int i=1; i<n; i++) dst[i]=l[i-1];
precalc();
for(int i=0; i<n; i++) diam=max(diam, t[i]+pr_ri[i]);
///cout<<diam<<endl;
///for(int i=0; i<n; i++) cout<<pr_le[i]<<" "<<pr_ri[i]<<endl;
for(int i=0; i<n; i++)
{
bst[i]=i;
calc[i]=diam;
for(int j=i+1; j<n; j++)
{
long long nd=find_diam(i, j);
if(nd<=calc[i])
{
calc[i]=nd;
bst[i]=j;
}
}
}
///for(int i=0; i<n; i++) cout<<calc[i]<<" "<<bst[i]<<endl;
long long mid=1e18;
for(int i=0; i<n; i++) if(calc[i]<mid) mid=calc[i];
return mid;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
0 ms |
212 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
0 ms |
308 KB |
n = 4, incorrect answer: jury 21 vs contestant 14 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
0 ms |
212 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
0 ms |
308 KB |
n = 4, incorrect answer: jury 21 vs contestant 14 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
0 ms |
212 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
0 ms |
308 KB |
n = 4, incorrect answer: jury 21 vs contestant 14 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
0 ms |
212 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
0 ms |
308 KB |
n = 4, incorrect answer: jury 21 vs contestant 14 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
0 ms |
212 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
0 ms |
308 KB |
n = 4, incorrect answer: jury 21 vs contestant 14 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
0 ms |
212 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
0 ms |
308 KB |
n = 4, incorrect answer: jury 21 vs contestant 14 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
0 ms |
212 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
0 ms |
308 KB |
n = 4, incorrect answer: jury 21 vs contestant 14 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
n = 4, 80 is a correct answer |
2 |
Correct |
0 ms |
212 KB |
n = 9, 110 is a correct answer |
3 |
Incorrect |
0 ms |
308 KB |
n = 4, incorrect answer: jury 21 vs contestant 14 |
4 |
Halted |
0 ms |
0 KB |
- |