# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
750715 | Sami_Massah | Collecting Stamps 3 (JOI20_ho_t3) | C++17 | 39 ms | 74884 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
const int maxn = 200 + 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 inf;
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];
Compilation message (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... |