結果

問題 No.1 道のショートカット
ユーザー qibqib
提出日時 2022-10-15 18:48:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 748 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 77,648 KB
最終ジャッジ日時 2024-06-26 20:13:26
合計ジャッジ時間 4,248 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,164 KB
testcase_01 AC 41 ms
53,624 KB
testcase_02 AC 39 ms
53,368 KB
testcase_03 AC 38 ms
53,896 KB
testcase_04 AC 39 ms
53,772 KB
testcase_05 AC 38 ms
53,028 KB
testcase_06 AC 38 ms
53,532 KB
testcase_07 AC 38 ms
53,828 KB
testcase_08 AC 89 ms
76,996 KB
testcase_09 AC 61 ms
69,128 KB
testcase_10 AC 83 ms
76,892 KB
testcase_11 AC 97 ms
77,124 KB
testcase_12 AC 126 ms
77,620 KB
testcase_13 AC 114 ms
77,492 KB
testcase_14 AC 41 ms
59,248 KB
testcase_15 AC 39 ms
58,908 KB
testcase_16 AC 52 ms
65,256 KB
testcase_17 AC 39 ms
58,104 KB
testcase_18 AC 40 ms
59,056 KB
testcase_19 AC 43 ms
59,148 KB
testcase_20 AC 83 ms
76,872 KB
testcase_21 AC 54 ms
64,840 KB
testcase_22 AC 43 ms
59,672 KB
testcase_23 AC 108 ms
77,156 KB
testcase_24 AC 114 ms
77,388 KB
testcase_25 AC 94 ms
76,888 KB
testcase_26 AC 74 ms
73,800 KB
testcase_27 AC 114 ms
77,648 KB
testcase_28 AC 38 ms
59,156 KB
testcase_29 AC 70 ms
73,840 KB
testcase_30 AC 48 ms
62,940 KB
testcase_31 AC 59 ms
66,760 KB
testcase_32 AC 84 ms
76,836 KB
testcase_33 AC 76 ms
75,024 KB
testcase_34 AC 106 ms
77,576 KB
testcase_35 AC 42 ms
60,232 KB
testcase_36 AC 68 ms
71,304 KB
testcase_37 AC 47 ms
62,736 KB
testcase_38 AC 41 ms
58,996 KB
testcase_39 AC 40 ms
59,208 KB
testcase_40 AC 45 ms
61,968 KB
testcase_41 AC 39 ms
54,704 KB
testcase_42 AC 37 ms
53,360 KB
testcase_43 AC 40 ms
58,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1 << 60

import heapq

n = int(input())
c = int(input())

v = 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()))

g = [[] for _ in range(n)]
for i in range(v):
  g[s[i] - 1].append((t[i] - 1, y[i], m[i]))

dist = [[INF for _ in range(c + 1)] for _ in range(n)]
dist[0][c] = 0
hp = [(0, 0, c)]
while len(hp) > 0:
  cd, cv, cc = heapq.heappop(hp)
  if cd > dist[cv][cc]:
  	continue
  for nv, cy, cm in g[cv]:
    if cc >= cy and dist[nv][cc - cy] > dist[cv][cc] + cm:
      dist[nv][cc - cy] = dist[cv][cc] + cm
      heapq.heappush(hp, (dist[nv][cc - cy], nv, cc - cy))

ans = min(dist[-1])
if ans < INF:
  print(ans)
else:
	print("-1")
0