結果

問題 No.1 道のショートカット
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-05 09:55:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 606 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 71,936 KB
最終ジャッジ日時 2024-06-09 16:51:08
合計ジャッジ時間 4,113 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,400 KB
testcase_01 AC 39 ms
54,400 KB
testcase_02 AC 38 ms
53,760 KB
testcase_03 AC 36 ms
54,272 KB
testcase_04 AC 36 ms
53,888 KB
testcase_05 AC 36 ms
53,632 KB
testcase_06 AC 36 ms
54,128 KB
testcase_07 AC 35 ms
54,144 KB
testcase_08 AC 79 ms
69,120 KB
testcase_09 AC 88 ms
69,504 KB
testcase_10 AC 66 ms
66,688 KB
testcase_11 AC 85 ms
68,992 KB
testcase_12 AC 135 ms
71,552 KB
testcase_13 AC 160 ms
71,936 KB
testcase_14 AC 48 ms
64,384 KB
testcase_15 AC 36 ms
53,760 KB
testcase_16 WA -
testcase_17 AC 37 ms
53,888 KB
testcase_18 AC 53 ms
66,688 KB
testcase_19 AC 55 ms
66,560 KB
testcase_20 AC 57 ms
66,944 KB
testcase_21 WA -
testcase_22 AC 49 ms
65,152 KB
testcase_23 AC 102 ms
67,968 KB
testcase_24 AC 103 ms
68,608 KB
testcase_25 AC 56 ms
66,944 KB
testcase_26 AC 51 ms
65,280 KB
testcase_27 AC 110 ms
69,504 KB
testcase_28 AC 51 ms
66,688 KB
testcase_29 AC 57 ms
67,328 KB
testcase_30 AC 49 ms
64,000 KB
testcase_31 AC 51 ms
64,384 KB
testcase_32 AC 73 ms
67,584 KB
testcase_33 AC 61 ms
66,944 KB
testcase_34 AC 97 ms
69,248 KB
testcase_35 AC 45 ms
63,104 KB
testcase_36 AC 53 ms
65,536 KB
testcase_37 WA -
testcase_38 AC 44 ms
61,696 KB
testcase_39 WA -
testcase_40 AC 47 ms
64,928 KB
testcase_41 AC 40 ms
59,904 KB
testcase_42 AC 36 ms
54,016 KB
testcase_43 AC 35 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
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 = deque([(0,c)])
while q:
    now,d = q.popleft()
    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
            q.append((nex,d-y))
ans = min(dis[-1])
if ans == inf:
    ans = -1
print(ans)
0