結果

問題 No.1 道のショートカット
ユーザー hiro1729hiro1729
提出日時 2023-07-27 09:05:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 698 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 67,380 KB
最終ジャッジ日時 2024-10-04 01:29:07
合計ジャッジ時間 3,210 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,352 KB
testcase_01 AC 35 ms
52,800 KB
testcase_02 AC 36 ms
54,028 KB
testcase_03 AC 35 ms
52,684 KB
testcase_04 AC 36 ms
53,432 KB
testcase_05 AC 35 ms
54,048 KB
testcase_06 AC 35 ms
53,296 KB
testcase_07 AC 39 ms
54,100 KB
testcase_08 AC 41 ms
61,468 KB
testcase_09 AC 41 ms
59,576 KB
testcase_10 AC 42 ms
59,656 KB
testcase_11 AC 41 ms
61,108 KB
testcase_12 AC 42 ms
61,728 KB
testcase_13 AC 42 ms
61,668 KB
testcase_14 AC 38 ms
53,488 KB
testcase_15 AC 36 ms
52,840 KB
testcase_16 AC 43 ms
59,628 KB
testcase_17 AC 35 ms
52,496 KB
testcase_18 AC 35 ms
52,848 KB
testcase_19 AC 36 ms
52,620 KB
testcase_20 AC 39 ms
58,620 KB
testcase_21 AC 36 ms
53,588 KB
testcase_22 AC 36 ms
54,256 KB
testcase_23 AC 54 ms
67,380 KB
testcase_24 AC 42 ms
60,732 KB
testcase_25 AC 38 ms
59,912 KB
testcase_26 AC 36 ms
54,272 KB
testcase_27 AC 43 ms
62,684 KB
testcase_28 AC 36 ms
53,280 KB
testcase_29 AC 42 ms
61,304 KB
testcase_30 AC 40 ms
59,100 KB
testcase_31 AC 40 ms
59,040 KB
testcase_32 AC 41 ms
59,600 KB
testcase_33 AC 39 ms
59,224 KB
testcase_34 AC 41 ms
61,576 KB
testcase_35 AC 42 ms
61,016 KB
testcase_36 AC 39 ms
59,560 KB
testcase_37 AC 41 ms
59,872 KB
testcase_38 AC 36 ms
52,904 KB
testcase_39 AC 36 ms
53,780 KB
testcase_40 AC 39 ms
59,336 KB
testcase_41 AC 36 ms
53,536 KB
testcase_42 AC 36 ms
53,288 KB
testcase_43 AC 37 ms
53,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
def main():
	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()))
	x = [[] for _ in range(n)]
	for i in range(v):
		x[s[i] - 1].append((m[i], y[i], t[i] - 1))
	q = [(0, 0, 0)]
	tcs = [float("inf")] * n
	mcs = [float("inf")] * n
	while q:
		tc, mc, p = heappop(q)
		if p == n - 1:
			exit(print(tc))
		for i in x[p]:
			nt = tc + i[0]
			nm = mc + i[1]
			np = i[2]
			if mc + i[1] > c:
				continue
			if nt < tcs[np] or nm < mcs[np]:
				heappush(q, (nt, nm, np))
				tcs[p] = nt
				mcs[p] = nm
	print(-1)
main()
0