結果

問題 No.1 道のショートカット
ユーザー tookunn_1213tookunn_1213
提出日時 2016-08-23 01:20:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 855 ms / 5,000 ms
コード長 672 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,920 KB
最終ジャッジ日時 2024-07-20 16:24:53
合計ジャッジ時間 6,675 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 219 ms
11,776 KB
testcase_09 AC 55 ms
11,008 KB
testcase_10 AC 144 ms
11,648 KB
testcase_11 AC 244 ms
12,672 KB
testcase_12 AC 855 ms
17,408 KB
testcase_13 AC 819 ms
17,024 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 29 ms
11,008 KB
testcase_16 AC 31 ms
10,880 KB
testcase_17 AC 28 ms
10,880 KB
testcase_18 AC 27 ms
10,880 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 52 ms
10,880 KB
testcase_21 AC 32 ms
11,008 KB
testcase_22 AC 30 ms
10,880 KB
testcase_23 AC 413 ms
16,128 KB
testcase_24 AC 374 ms
14,720 KB
testcase_25 AC 71 ms
11,264 KB
testcase_26 AC 48 ms
10,880 KB
testcase_27 AC 449 ms
13,952 KB
testcase_28 AC 27 ms
11,008 KB
testcase_29 AC 111 ms
11,776 KB
testcase_30 AC 34 ms
11,008 KB
testcase_31 AC 68 ms
12,288 KB
testcase_32 AC 194 ms
12,416 KB
testcase_33 AC 90 ms
11,648 KB
testcase_34 AC 577 ms
17,920 KB
testcase_35 AC 28 ms
11,008 KB
testcase_36 AC 63 ms
11,392 KB
testcase_37 AC 36 ms
11,008 KB
testcase_38 AC 27 ms
11,008 KB
testcase_39 AC 28 ms
10,752 KB
testcase_40 AC 30 ms
11,008 KB
testcase_41 AC 27 ms
10,880 KB
testcase_42 AC 26 ms
10,880 KB
testcase_43 AC 28 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,C,V = int(input()),int(input()),int(input())
S = [int(i) - 1 for i in input().split()]
T = [int(i) - 1 for i in input().split()]
Y = [int(i) for i in input().split()]
M = [int(i) for i in input().split()]
used = [[False for j in range(N)]for i in range(300 + 1)]
def dijkstra(s,t):
	q = [(0,0,s)]
	ret = 10 ** 9 + 7
	while len(q) > 0:
		d = heapq.heappop(q)
		if d[1] > C:
			continue
		if used[d[1]][d[2]]:
			continue
		used[d[1]][d[2]] = True
		if d[2] == t:
			ret = min(ret,d[0])
			continue
		for i in range(V):
			if S[i] == d[2]:
				heapq.heappush(q,(d[0] + M[i],d[1] + Y[i],T[i]))
	return -1 if ret == 10 ** 9 + 7 else ret
print(dijkstra(0,N - 1))
0