이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const int MX = 203;
int n, L;
int pos[MX], T[MX];
map<tuple<int,int,long long>, int>dp;
int dist(int i, int j) {
int ret = abs(pos[i]-pos[j]);
return min(ret, L-ret);
}
int solve(int i, int j, long long CLOCK) {
if(dp.count({i, j, CLOCK})) return dp[{i, j, CLOCK}];
int ret = 0;
if(i<j) {
if(i<n) ret = max(ret, solve(j, i+1, CLOCK+dist(i, j)));
else ret = max(ret, solve(j, j, CLOCK+dist(i, j)));
if(i<n) ret = max(ret, solve(i+1, j, CLOCK+dist(i, i+1)));
} else if(i>j) {
if(i>1) ret = max(ret, solve(i-1, j, CLOCK+dist(i, i-1)));
if(i>1) ret = max(ret, solve(j, i-1, CLOCK+dist(j, i)));
else ret = max(ret, solve(j, j, CLOCK+dist(j, i)));
}
ret += CLOCK<=T[i];
dp[{i, j, CLOCK}] = ret;
assert(dp.size()<=10000000);
return ret;
}
void PlayGround() {
cin>>n>>L;
for(int i=1; i<=n; ++i) {
cin>>pos[i];
}
for(int i=1; i<=n; ++i) {
cin>>T[i];
}
cout << max(solve(1, n, pos[1]), solve(n, 1, L-pos[n])) << '\n';
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
PlayGround();
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |