結果

問題 No.1 道のショートカット
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-05 10:05:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 672 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 79,816 KB
最終ジャッジ日時 2024-06-09 17:06:08
合計ジャッジ時間 5,302 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,248 KB
testcase_01 AC 34 ms
52,736 KB
testcase_02 AC 35 ms
53,120 KB
testcase_03 AC 34 ms
52,480 KB
testcase_04 AC 35 ms
52,352 KB
testcase_05 AC 36 ms
53,120 KB
testcase_06 AC 36 ms
53,196 KB
testcase_07 AC 35 ms
53,120 KB
testcase_08 AC 152 ms
78,212 KB
testcase_09 AC 153 ms
78,576 KB
testcase_10 AC 113 ms
77,252 KB
testcase_11 AC 131 ms
78,612 KB
testcase_12 AC 200 ms
79,816 KB
testcase_13 AC 185 ms
79,468 KB
testcase_14 AC 85 ms
76,608 KB
testcase_15 AC 36 ms
52,480 KB
testcase_16 WA -
testcase_17 AC 35 ms
52,480 KB
testcase_18 AC 105 ms
77,024 KB
testcase_19 AC 132 ms
77,224 KB
testcase_20 AC 112 ms
77,056 KB
testcase_21 WA -
testcase_22 AC 117 ms
77,316 KB
testcase_23 AC 120 ms
77,436 KB
testcase_24 AC 126 ms
77,868 KB
testcase_25 AC 131 ms
77,776 KB
testcase_26 AC 114 ms
76,928 KB
testcase_27 AC 158 ms
78,792 KB
testcase_28 AC 78 ms
74,544 KB
testcase_29 AC 88 ms
77,396 KB
testcase_30 AC 62 ms
68,736 KB
testcase_31 AC 59 ms
67,072 KB
testcase_32 AC 129 ms
77,936 KB
testcase_33 AC 118 ms
77,292 KB
testcase_34 AC 140 ms
78,452 KB
testcase_35 AC 46 ms
61,952 KB
testcase_36 AC 90 ms
77,312 KB
testcase_37 WA -
testcase_38 AC 42 ms
61,824 KB
testcase_39 WA -
testcase_40 AC 70 ms
72,960 KB
testcase_41 AC 40 ms
59,008 KB
testcase_42 AC 35 ms
52,864 KB
testcase_43 AC 36 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
n = int(input())
c = int(input())
v = int(input())
L = [list(map(int,input().split())) for i in range(4)]

e = [[] for i in range(n)]
for s,t,y,m in zip(L[0],L[1],L[2],L[3]):
    s -= 1
    t -= 1
    e[s].append((t,y,m))
    e[t].append((s,y,m))

inf = 10**10
dis = [[inf]*(c+1) for i in range(n)]
dis[0][c] = 0
q = [(0,0,c)]
while q:
    time,now,d = heappop(q)
    if time > dis[now][d]:
        continue
    for nex,y,m in e[now]:
        if d >= y and dis[nex][d-y] > dis[now][d]+m:
            dis[nex][d-y] = dis[now][d]+m
            heappush(q, (dis[nex][d-y],nex,d-y))
ans = min(dis[-1])
if ans == inf:
    ans = -1
print(ans)
0