結果

問題 No.1 道のショートカット
ユーザー tookunn_1213tookunn_1213
提出日時 2015-11-25 00:27:47
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 908 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-08 04:16:16
合計ジャッジ時間 1,991 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,144 KB
testcase_01 AC 12 ms
6,144 KB
testcase_02 AC 12 ms
6,272 KB
testcase_03 AC 12 ms
6,272 KB
testcase_04 WA -
testcase_05 AC 11 ms
6,144 KB
testcase_06 AC 11 ms
6,272 KB
testcase_07 AC 11 ms
6,144 KB
testcase_08 AC 31 ms
6,528 KB
testcase_09 AC 17 ms
6,400 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 13 ms
6,016 KB
testcase_16 WA -
testcase_17 AC 12 ms
6,272 KB
testcase_18 AC 13 ms
6,400 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 13 ms
6,144 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 15 ms
6,272 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 12 ms
6,400 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 15 ms
6,272 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 12 ms
6,144 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 12 ms
6,016 KB
testcase_43 AC 12 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(nowTown,money):
	if money < 0:
		return 9000000009L
	global N
	if nowTown >= N - 1:
		return 0
	global dp
	if dp[nowTown][money] != -1:
		return dp[nowTown][money]
	global S,T,Y,M,connect,time
	ret = 9000000009L
	for i in range(nowTown + 1,N):
		if connect[nowTown][i] != -1:
			ret = min(ret,dfs(i,money - connect[nowTown][i]) + time[nowTown][i])
	dp[nowTown][money] = ret
	return dp[nowTown][money]
N,C,V = int(raw_input()),int(raw_input()),int(raw_input())
S,T,Y,M = map(int,raw_input().split()),map(int,raw_input().split()),map(int,raw_input().split()),map(int,raw_input().split())
connect = [[-1 for i in range(N)] for j in range(N)]
time = [[-1 for i in range(N)] for j in range(N)]
dp = [[-1 for i in range(300 + 1)] for j in range(N + 1)]
for i in range(V):
	connect[S[i] - 1][T[i] - 1] = Y[i]
	time[S[i] - 1][T[i] - 1] = M[i]
ans = dfs(0,C)
if ans == 9000000009L:
	print -1
else:
	print ans
0