結果

問題 No.1 道のショートカット
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-05 10:11:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 609 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,880 KB
最終ジャッジ日時 2024-12-30 12:24:13
合計ジャッジ時間 5,453 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,224 KB
testcase_01 AC 45 ms
52,608 KB
testcase_02 AC 46 ms
52,608 KB
testcase_03 AC 46 ms
52,224 KB
testcase_04 AC 46 ms
52,224 KB
testcase_05 AC 45 ms
52,096 KB
testcase_06 AC 47 ms
52,352 KB
testcase_07 AC 48 ms
52,736 KB
testcase_08 AC 110 ms
76,416 KB
testcase_09 AC 81 ms
66,432 KB
testcase_10 AC 103 ms
74,496 KB
testcase_11 AC 125 ms
76,712 KB
testcase_12 AC 157 ms
76,880 KB
testcase_13 AC 144 ms
76,672 KB
testcase_14 AC 46 ms
52,608 KB
testcase_15 AC 46 ms
52,480 KB
testcase_16 AC 66 ms
63,104 KB
testcase_17 AC 46 ms
52,480 KB
testcase_18 AC 50 ms
52,608 KB
testcase_19 AC 47 ms
52,480 KB
testcase_20 AC 112 ms
76,160 KB
testcase_21 AC 71 ms
63,872 KB
testcase_22 AC 49 ms
52,992 KB
testcase_23 AC 140 ms
76,672 KB
testcase_24 AC 142 ms
76,416 KB
testcase_25 AC 120 ms
76,416 KB
testcase_26 AC 99 ms
71,808 KB
testcase_27 AC 146 ms
76,672 KB
testcase_28 AC 48 ms
52,736 KB
testcase_29 AC 103 ms
72,704 KB
testcase_30 AC 63 ms
61,568 KB
testcase_31 AC 73 ms
64,768 KB
testcase_32 AC 114 ms
76,416 KB
testcase_33 AC 100 ms
71,808 KB
testcase_34 AC 139 ms
76,672 KB
testcase_35 AC 53 ms
59,008 KB
testcase_36 AC 89 ms
68,992 KB
testcase_37 AC 61 ms
60,928 KB
testcase_38 AC 46 ms
52,480 KB
testcase_39 AC 50 ms
52,608 KB
testcase_40 AC 56 ms
59,776 KB
testcase_41 AC 49 ms
52,480 KB
testcase_42 AC 47 ms
52,352 KB
testcase_43 AC 48 ms
52,352 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]):
    e[s-1].append((t-1,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] > time+m:
            dis[nex][d-y] = time+m
            heappush(q, (time+m,nex,d-y))
ans = min(dis[-1])
if ans == inf:
    ans = -1
print(ans)
0