# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
471761 | rainboy | Ceste (COCI17_ceste) | C11 | 19 ms | 8268 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <string.h>
#define N 100
#define M 100
#define A 10000
#define INF 0x3f3f3f3f
int min(int a, int b) { return a < b ? a : b; }
int main() {
static int dp[A + 1][N], ii[M], jj[M], aa[M], bb[M];
int n, m, h, i, j, a;
scanf("%d%d", &n, &m);
for (h = 0; h < m; h++)
scanf("%d%d%d%d", &ii[h], &jj[h], &aa[h], &bb[h]), ii[h]--, jj[h]--;
for (a = 0; a <= A; a++)
memset(dp[a], 0x3f, n * sizeof *dp[a]);
dp[0][0] = 0;
for (a = 0; a <= A; a++)
for (h = 0; h < m; h++)
if (a + aa[h] <= A) {
i = ii[h], j = jj[h];
dp[a + aa[h]][j] = min(dp[a + aa[h]][j], dp[a][i] + bb[h]);
dp[a + aa[h]][i] = min(dp[a + aa[h]][i], dp[a][j] + bb[h]);
}
for (i = 1; i < n; i++) {
int ans = INF;
for (a = 1; a <= A; a++)
if (dp[a][i] <= ans / a)
ans = a * dp[a][i];
printf("%d\n", ans == INF ? -1 : ans);
}
return 0;
}
컴파일 시 표준 에러 (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... |
# | 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... |