結果

問題 No.1 道のショートカット
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-30 02:17:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 641 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 76,756 KB
最終ジャッジ日時 2024-10-07 13:17:17
合計ジャッジ時間 3,685 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,708 KB
testcase_01 AC 39 ms
53,336 KB
testcase_02 AC 40 ms
54,548 KB
testcase_03 AC 39 ms
53,712 KB
testcase_04 AC 39 ms
53,484 KB
testcase_05 AC 39 ms
52,564 KB
testcase_06 AC 38 ms
53,332 KB
testcase_07 AC 39 ms
53,788 KB
testcase_08 AC 47 ms
62,248 KB
testcase_09 AC 85 ms
76,756 KB
testcase_10 AC 44 ms
59,848 KB
testcase_11 AC 56 ms
66,848 KB
testcase_12 AC 47 ms
62,276 KB
testcase_13 AC 58 ms
67,848 KB
testcase_14 AC 39 ms
53,696 KB
testcase_15 AC 39 ms
53,640 KB
testcase_16 WA -
testcase_17 AC 39 ms
53,512 KB
testcase_18 AC 41 ms
54,312 KB
testcase_19 AC 40 ms
53,852 KB
testcase_20 AC 42 ms
58,900 KB
testcase_21 WA -
testcase_22 AC 41 ms
52,704 KB
testcase_23 AC 60 ms
69,156 KB
testcase_24 AC 58 ms
66,636 KB
testcase_25 AC 42 ms
59,200 KB
testcase_26 AC 39 ms
52,756 KB
testcase_27 AC 64 ms
71,032 KB
testcase_28 AC 39 ms
52,900 KB
testcase_29 AC 50 ms
64,512 KB
testcase_30 AC 44 ms
60,592 KB
testcase_31 AC 43 ms
61,076 KB
testcase_32 AC 51 ms
64,100 KB
testcase_33 AC 49 ms
62,540 KB
testcase_34 AC 54 ms
66,552 KB
testcase_35 AC 46 ms
61,528 KB
testcase_36 AC 48 ms
62,056 KB
testcase_37 WA -
testcase_38 AC 37 ms
52,564 KB
testcase_39 WA -
testcase_40 AC 42 ms
59,848 KB
testcase_41 AC 43 ms
59,536 KB
testcase_42 AC 39 ms
52,660 KB
testcase_43 AC 41 ms
54,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
c = int(input())
a = 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()))

edge = [[] for i in range(n)]
for i in range(a):
    s, t, y, m = S[i], T[i], Y[i], M[i]
    s, t = s-1, t-1
    edge[s].append((y, m, t))
    edge[t].append((y, m, s))

INF = 10**18
import heapq
hq = [(0, 0, 0)]
heapq.heapify(hq)
while hq:
    time, cost, v = heapq.heappop(hq)
    if v == n-1:
        print(time)
        exit()
    for y, m, u in edge[v]:
        if cost+y <= c:
            heapq.heappush(hq, (time+m, cost+y, u))
print(-1)
0