結果

問題 No.1 道のショートカット
ユーザー noriocnorioc
提出日時 2024-08-02 02:02:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 5,000 ms
コード長 768 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 70,676 KB
最終ジャッジ日時 2024-08-02 02:03:03
合計ジャッジ時間 4,411 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,248 KB
testcase_01 AC 36 ms
55,364 KB
testcase_02 AC 38 ms
55,612 KB
testcase_03 AC 37 ms
54,464 KB
testcase_04 AC 37 ms
55,288 KB
testcase_05 AC 36 ms
53,944 KB
testcase_06 AC 37 ms
54,084 KB
testcase_07 AC 38 ms
54,516 KB
testcase_08 AC 58 ms
69,716 KB
testcase_09 AC 48 ms
65,796 KB
testcase_10 AC 57 ms
68,048 KB
testcase_11 AC 59 ms
69,692 KB
testcase_12 AC 58 ms
69,516 KB
testcase_13 AC 57 ms
70,676 KB
testcase_14 AC 40 ms
60,296 KB
testcase_15 AC 39 ms
61,180 KB
testcase_16 AC 42 ms
62,320 KB
testcase_17 AC 39 ms
61,432 KB
testcase_18 AC 41 ms
59,860 KB
testcase_19 AC 41 ms
60,676 KB
testcase_20 AC 49 ms
66,812 KB
testcase_21 AC 47 ms
62,372 KB
testcase_22 AC 40 ms
60,936 KB
testcase_23 AC 59 ms
68,532 KB
testcase_24 AC 62 ms
70,380 KB
testcase_25 AC 49 ms
65,368 KB
testcase_26 AC 49 ms
64,956 KB
testcase_27 AC 57 ms
69,584 KB
testcase_28 AC 39 ms
61,144 KB
testcase_29 AC 54 ms
69,172 KB
testcase_30 AC 49 ms
63,492 KB
testcase_31 AC 52 ms
65,144 KB
testcase_32 AC 53 ms
67,824 KB
testcase_33 AC 50 ms
67,140 KB
testcase_34 AC 59 ms
69,476 KB
testcase_35 AC 43 ms
62,476 KB
testcase_36 AC 53 ms
67,504 KB
testcase_37 AC 47 ms
64,532 KB
testcase_38 AC 40 ms
60,160 KB
testcase_39 AC 41 ms
61,160 KB
testcase_40 AC 42 ms
61,024 KB
testcase_41 AC 37 ms
55,116 KB
testcase_42 AC 38 ms
54,316 KB
testcase_43 AC 41 ms
59,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

INF = 1 << 60
N = int(input())
C = int(input())
V = int(input())
S = list(map(lambda x: int(x)-1, input().split()))
T = list(map(lambda x: int(x)-1, input().split()))
Y = list(map(int, input().split()))
M = list(map(int, input().split()))

adj = defaultdict(list)
for s, t, y, m in zip(S, T, Y, M):
    adj[s].append((t, y, m))

dp = [[INF] * (C+1) for _ in range(N)]
dp[0][0] = 0
# dp[i][j]
# i : 町 i にいて
# j : コストが j のときの
# 最短時間
for i in range(N):
    for j in range(C):
        if dp[i][j] == INF: continue
        for t, y, m in adj[i]:
            if j+y > C: continue
            dp[t][j+y] = min(dp[t][j+y], dp[i][j] + m)

ans = min(dp[N-1])
if ans == INF:
    print(-1)
else:
    print(ans)
0