結果

問題 No.1 道のショートカット
ユーザー stnkienstnkien
提出日時 2020-06-12 00:56:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 5,000 ms
コード長 766 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-07-20 16:49:33
合計ジャッジ時間 4,927 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,480 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 39 ms
52,992 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 37 ms
52,736 KB
testcase_08 AC 112 ms
76,800 KB
testcase_09 AC 64 ms
68,352 KB
testcase_10 AC 101 ms
76,732 KB
testcase_11 AC 139 ms
77,944 KB
testcase_12 AC 181 ms
79,208 KB
testcase_13 AC 140 ms
77,624 KB
testcase_14 AC 42 ms
53,248 KB
testcase_15 AC 39 ms
52,608 KB
testcase_16 AC 59 ms
66,176 KB
testcase_17 AC 40 ms
52,736 KB
testcase_18 AC 42 ms
53,248 KB
testcase_19 AC 42 ms
53,120 KB
testcase_20 AC 97 ms
76,672 KB
testcase_21 AC 60 ms
66,304 KB
testcase_22 AC 45 ms
59,008 KB
testcase_23 AC 227 ms
81,408 KB
testcase_24 AC 216 ms
80,460 KB
testcase_25 AC 122 ms
76,860 KB
testcase_26 AC 98 ms
76,432 KB
testcase_27 AC 166 ms
78,608 KB
testcase_28 AC 40 ms
52,608 KB
testcase_29 AC 100 ms
76,800 KB
testcase_30 AC 62 ms
66,816 KB
testcase_31 AC 105 ms
77,184 KB
testcase_32 AC 114 ms
77,240 KB
testcase_33 AC 100 ms
76,932 KB
testcase_34 AC 139 ms
77,696 KB
testcase_35 AC 60 ms
65,152 KB
testcase_36 AC 74 ms
71,424 KB
testcase_37 AC 54 ms
63,616 KB
testcase_38 AC 39 ms
52,736 KB
testcase_39 AC 39 ms
53,632 KB
testcase_40 AC 47 ms
61,044 KB
testcase_41 AC 39 ms
52,736 KB
testcase_42 AC 39 ms
52,608 KB
testcase_43 AC 39 ms
53,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
N = int(input())
C = int(input())
V = int(input())
*S, = map(int, input().split())
*T, = map(int, input().split())
*Y, = map(int, input().split())
*M, = map(int, input().split())

G = [[] for _ in [0]*(N+1)]
for s, *t in zip(S, T, Y, M):
    G[s].append(t)

INF = 10**10
D = [[INF]*(C+1) for _ in [0]*(N+1)]
used = set()
q = []
heappush(q, (0, 1, C))

while q:
    dmin = INF
    d, v, c = heappop(q)
    if (v, c) in used:
        continue
    used.add((v, c))
    D[v][c] = d

    for u, y, m in G[v]:
        if (u, c-y) in used or c-y < 0:
            continue
        new_d = d+m
        if new_d < D[u][c-y]:
            heappush(q, (d+m, u, c-y))

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