# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
920609 | rainboy | 요리 강좌 (KOI17_cook) | C++17 | 1 ms | 2648 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 <stdio.h>
#define N 3000
#define K 3000
#define INF 0x3f3f3f3f
int min(int a, int b) { return a < b ? a : b; }
int main() {
static int ss[N + 1][K], pp[K], dp[N + 1][K], dq[K];
int n, k, l, r, t, h, h1, h2, h3, h_, i, ans;
scanf("%d%d%d%d%d", &k, &n, &l, &r, &t);
for (h = 0; h < k; h++)
for (i = 1; i <= n; i++)
scanf("%d", &ss[i][h]);
for (i = 1; i <= n; i++)
for (h = 0; h < k; h++)
ss[i][h] += ss[i - 1][h];
for (h = 0; h < k; h++)
scanf("%d", &pp[h]), pp[h]--;
for (i = 0; i <= n; i++) {
for (h = 0; h < k; h++)
dp[i][h] = dq[h] + ss[i][h];
h1 = h2 = h3 = -1;
for (h = 0; h < k; h++)
if (h1 == -1 || dp[i][h1] > dp[i][h])
h3 = h2, h2 = h1, h1 = h;
else if (h2 == -1 || dp[i][h2] > dp[i][h])
h3 = h2, h2 = h;
else if (h3 == -1 || dp[i][h3] > dp[i][h])
h3 = h;
for (h = 0; h < k; h++) {
if (h1 != h && h1 != pp[h])
h_ = h1;
else if (h2 != h && h2 != pp[h])
h_ = h2;
else
h_ = h3;
dq[h] = min(dq[h], dp[i][h_] - ss[i][h]);
}
}
ans = INF;
for (h = 0; h < k; h++)
ans = min(ans, dp[n][h]);
printf("%d\n", ans);
return 0;
}
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |