# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
627728 | Abrar_Al_Samit | Collecting Stamps 3 (JOI20_ho_t3) | C++17 | 523 ms | 127432 KiB |
이 제출은 이전 버전의 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 MAXT;
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(CLOCK>MAXT) return 0;
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;
# | 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... |