結果

問題 No.1 道のショートカット
ユーザー C++ C++
提出日時 2024-02-20 17:34:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 673 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 70,200 KB
最終ジャッジ日時 2024-09-29 03:46:49
合計ジャッジ時間 2,952 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,268 KB
testcase_01 AC 36 ms
53,692 KB
testcase_02 AC 35 ms
53,780 KB
testcase_03 AC 35 ms
54,052 KB
testcase_04 AC 34 ms
55,636 KB
testcase_05 AC 34 ms
55,996 KB
testcase_06 AC 34 ms
54,284 KB
testcase_07 AC 34 ms
54,020 KB
testcase_08 AC 48 ms
68,672 KB
testcase_09 AC 42 ms
64,772 KB
testcase_10 AC 46 ms
65,900 KB
testcase_11 AC 51 ms
68,784 KB
testcase_12 AC 59 ms
70,200 KB
testcase_13 AC 55 ms
68,888 KB
testcase_14 AC 36 ms
54,132 KB
testcase_15 AC 34 ms
54,784 KB
testcase_16 AC 39 ms
61,480 KB
testcase_17 AC 35 ms
54,988 KB
testcase_18 AC 35 ms
54,772 KB
testcase_19 AC 35 ms
56,372 KB
testcase_20 AC 46 ms
67,036 KB
testcase_21 AC 40 ms
61,240 KB
testcase_22 AC 35 ms
55,416 KB
testcase_23 AC 59 ms
68,824 KB
testcase_24 AC 61 ms
68,920 KB
testcase_25 AC 46 ms
64,848 KB
testcase_26 AC 46 ms
63,828 KB
testcase_27 AC 59 ms
68,444 KB
testcase_28 AC 36 ms
54,656 KB
testcase_29 AC 49 ms
68,336 KB
testcase_30 AC 44 ms
64,276 KB
testcase_31 AC 44 ms
65,612 KB
testcase_32 AC 48 ms
67,072 KB
testcase_33 AC 46 ms
65,792 KB
testcase_34 AC 57 ms
69,124 KB
testcase_35 AC 39 ms
61,716 KB
testcase_36 AC 46 ms
66,792 KB
testcase_37 AC 43 ms
64,308 KB
testcase_38 AC 36 ms
54,004 KB
testcase_39 AC 35 ms
55,320 KB
testcase_40 AC 40 ms
61,956 KB
testcase_41 AC 37 ms
54,284 KB
testcase_42 AC 36 ms
54,940 KB
testcase_43 AC 37 ms
54,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
INF = 10 ** 10
def inp() -> str : return input()
def i() -> int : return int(input())
def lis() -> list[int] : return list(map(int, input().split()))

n = i()
c = i()
v = i()
ss = lis()
tt = lis()
ys = lis()
ms = lis()

graph = [[] for _ in range(n)]
for s, t, y, m in zip(ss, tt, ys, ms):
  graph[s - 1].append([t - 1, y, m])

cost = [[INF] * (c + 1) for _ in range(n)]
cost[0][c] = 0

que = deque([(c, 0)])
while que:
  c, s = que.popleft()
  for t, y, m in graph[s]:
    if y <= c and cost[t][c - y] > cost[s][c] + m:
      cost[t][c - y] = cost[s][c] + m
      que.append((c - y, t))
ans = min(cost[n - 1])
print(-1 if ans == INF else ans)
0