結果

問題 No.1 道のショートカット
ユーザー AAAR SalmonAAAR Salmon
提出日時 2021-05-22 13:07:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 5,000 ms
コード長 595 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 69,044 KB
最終ジャッジ日時 2024-10-10 10:56:38
合計ジャッジ時間 3,404 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,848 KB
testcase_01 AC 39 ms
53,432 KB
testcase_02 AC 41 ms
54,464 KB
testcase_03 AC 38 ms
53,284 KB
testcase_04 AC 38 ms
53,136 KB
testcase_05 AC 39 ms
54,872 KB
testcase_06 AC 37 ms
52,812 KB
testcase_07 AC 38 ms
53,564 KB
testcase_08 AC 54 ms
65,636 KB
testcase_09 AC 47 ms
61,660 KB
testcase_10 AC 53 ms
64,652 KB
testcase_11 AC 54 ms
64,904 KB
testcase_12 AC 62 ms
69,044 KB
testcase_13 AC 59 ms
68,280 KB
testcase_14 AC 44 ms
60,444 KB
testcase_15 AC 38 ms
53,504 KB
testcase_16 AC 45 ms
61,868 KB
testcase_17 AC 37 ms
53,448 KB
testcase_18 AC 45 ms
60,412 KB
testcase_19 AC 45 ms
60,680 KB
testcase_20 AC 46 ms
61,984 KB
testcase_21 AC 44 ms
60,192 KB
testcase_22 AC 43 ms
61,388 KB
testcase_23 AC 57 ms
67,528 KB
testcase_24 AC 53 ms
63,756 KB
testcase_25 AC 45 ms
60,200 KB
testcase_26 AC 44 ms
60,372 KB
testcase_27 AC 62 ms
68,272 KB
testcase_28 AC 39 ms
53,812 KB
testcase_29 AC 54 ms
66,028 KB
testcase_30 AC 44 ms
59,608 KB
testcase_31 AC 47 ms
61,864 KB
testcase_32 AC 55 ms
64,116 KB
testcase_33 AC 54 ms
63,628 KB
testcase_34 AC 54 ms
65,844 KB
testcase_35 AC 40 ms
55,548 KB
testcase_36 AC 49 ms
63,308 KB
testcase_37 AC 46 ms
61,448 KB
testcase_38 AC 39 ms
53,356 KB
testcase_39 AC 45 ms
59,804 KB
testcase_40 AC 40 ms
54,028 KB
testcase_41 AC 39 ms
54,524 KB
testcase_42 AC 38 ms
54,172 KB
testcase_43 AC 38 ms
53,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush


V = int(input())
C = int(input())
E = int(input())
edges = [[] for _ in range(V)]
for s, t, y, m in zip(*(map(int,input().split()) for _ in range(4))):
	edges[s - 1].append((m, y, t - 1))

INF = 1 << 60
dp = [[INF] * (C + 1) for _ in range(V)]
dp[0] = [0] * (C + 1)

q = [(0, 0, 0)]
while q:
	m, y, s = heappop(q)
	for dm, dy, t in edges[s]:
		if y + dy > C or m + dm >= dp[t][y + dy]:
			continue
		for ny in range(y + dy, C + 1):
			dp[t][ny] = min(dp[t][ny], m + dm)
		heappush(q, (m + dm, y + dy, t))

print(dp[V - 1][C] if dp[V - 1][C] != INF else -1)
0