# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
750700 | Sami_Massah | Collecting Stamps 3 (JOI20_ho_t3) | C++17 | 7 ms | 11304 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int maxn = 100 + 12, inf = 1e9 + 12;
int n, L, dist[maxn], t[maxn], dp[maxn][maxn][maxn][2];
int get_dist(int a, int b){
if(a == n - 1 && b == 0)
return L - dist[a];
return abs(dist[a] - dist[b]);
}
int find_ans(int a, int b, int c, int d){
if(c < 0)
return -1;
if(dp[a][b][c][d] != -1)
return dp[a][b][c][d];
dp[a][b][c][d] = inf;
//cout << a << ' ' << b << ' ' << c << ' ' << d << endl;
if(d == 0){
if(a != 0){
dp[a][b][c][d] = min(dp[a][b][c][d], find_ans((a + 1) % n, b, c, d) + get_dist(a, a + 1));
int x = find_ans((a + 1) % n, b, c - 1, d) + get_dist(a, a + 1);
if(x <= t[a])
dp[a][b][c][d] = min(dp[a][b][c][d], x);
}
if(a != 0){
dp[a][b][c][d] = min(dp[a][b][c][d], find_ans((a + 1) % n, b, c, d ^ 1) + L - dist[a] + dist[b]);
int x = find_ans((a + 1) % n, b, c - 1, d ^ 1) + L - dist[a] + dist[b];
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |