結果

問題 No.1 道のショートカット
ユーザー lloyzlloyz
提出日時 2023-09-27 07:22:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 5,000 ms
コード長 851 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,036 KB
最終ジャッジ日時 2024-07-20 01:31:00
合計ジャッジ時間 5,290 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,888 KB
testcase_01 AC 45 ms
54,400 KB
testcase_02 AC 45 ms
54,400 KB
testcase_03 AC 51 ms
54,272 KB
testcase_04 AC 46 ms
54,272 KB
testcase_05 AC 47 ms
54,016 KB
testcase_06 AC 47 ms
54,144 KB
testcase_07 AC 46 ms
54,784 KB
testcase_08 AC 116 ms
77,824 KB
testcase_09 AC 83 ms
70,400 KB
testcase_10 AC 120 ms
77,312 KB
testcase_11 AC 151 ms
78,248 KB
testcase_12 AC 156 ms
78,532 KB
testcase_13 AC 184 ms
79,036 KB
testcase_14 AC 54 ms
60,288 KB
testcase_15 AC 53 ms
60,032 KB
testcase_16 AC 59 ms
62,848 KB
testcase_17 AC 49 ms
59,648 KB
testcase_18 AC 52 ms
59,648 KB
testcase_19 AC 51 ms
59,904 KB
testcase_20 AC 123 ms
77,172 KB
testcase_21 AC 68 ms
65,664 KB
testcase_22 AC 53 ms
61,568 KB
testcase_23 AC 137 ms
77,920 KB
testcase_24 AC 138 ms
78,164 KB
testcase_25 AC 108 ms
77,184 KB
testcase_26 AC 99 ms
77,004 KB
testcase_27 AC 141 ms
78,320 KB
testcase_28 AC 52 ms
59,648 KB
testcase_29 AC 107 ms
77,164 KB
testcase_30 AC 58 ms
64,768 KB
testcase_31 AC 62 ms
65,664 KB
testcase_32 AC 132 ms
77,440 KB
testcase_33 AC 104 ms
76,928 KB
testcase_34 AC 147 ms
78,412 KB
testcase_35 AC 50 ms
61,312 KB
testcase_36 AC 89 ms
72,576 KB
testcase_37 AC 55 ms
63,704 KB
testcase_38 AC 46 ms
60,032 KB
testcase_39 AC 48 ms
59,904 KB
testcase_40 AC 53 ms
62,080 KB
testcase_41 AC 50 ms
54,400 KB
testcase_42 AC 48 ms
53,888 KB
testcase_43 AC 51 ms
59,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from heapq import heappop, heappush

n = int(input())
c = int(input())
v = int(input())
S = list(map(int, input().split()))
T = list(map(int, input().split()))
Y = list(map(int, input().split()))
M = list(map(int, input().split()))
G = defaultdict(list)
for i in range(v):
    s, t, y, m = S[i], T[i], Y[i], M[i]
    s -= 1
    t -= 1
    G[s].append((t, y, m))

INF = 10**18
DP = [[INF for _ in range(c + 1)] for _ in range(n)]
DP[0][0] = 0
H = [(0, 0, 0)]
while H:
    cp, cc, ct = heappop(H)
    if ct > DP[cp][cc]:
        continue
    for np, dc, dt in G[cp]:
        nc = cc + dc
        nt = ct + dt
        if nc > c:
            continue
        if nt >= DP[np][nc]:
            continue
        DP[np][nc] = nt
        heappush(H, (np, nc, nt))
ans = min(DP[n - 1])
if ans == INF:
    ans = -1
print(ans)
0