結果

問題 No.1 道のショートカット
ユーザー bellangeldindonbellangeldindon
提出日時 2019-05-15 17:32:51
言語 Python2
(2.7.18)
結果
AC  
実行時間 285 ms / 5,000 ms
コード長 1,200 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-07-20 16:39:28
合計ジャッジ時間 4,212 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,016 KB
testcase_01 AC 12 ms
6,144 KB
testcase_02 AC 12 ms
6,144 KB
testcase_03 AC 12 ms
6,400 KB
testcase_04 AC 12 ms
6,144 KB
testcase_05 AC 11 ms
6,144 KB
testcase_06 AC 12 ms
6,272 KB
testcase_07 AC 12 ms
6,144 KB
testcase_08 AC 152 ms
15,488 KB
testcase_09 AC 91 ms
12,032 KB
testcase_10 AC 154 ms
14,720 KB
testcase_11 AC 152 ms
15,104 KB
testcase_12 AC 285 ms
20,480 KB
testcase_13 AC 235 ms
19,328 KB
testcase_14 AC 15 ms
6,400 KB
testcase_15 AC 11 ms
6,144 KB
testcase_16 AC 31 ms
7,680 KB
testcase_17 AC 11 ms
6,272 KB
testcase_18 AC 18 ms
6,656 KB
testcase_19 AC 16 ms
6,528 KB
testcase_20 AC 33 ms
7,680 KB
testcase_21 AC 18 ms
6,784 KB
testcase_22 AC 15 ms
6,400 KB
testcase_23 AC 172 ms
12,672 KB
testcase_24 AC 129 ms
11,136 KB
testcase_25 AC 27 ms
7,296 KB
testcase_26 AC 20 ms
6,784 KB
testcase_27 AC 204 ms
15,616 KB
testcase_28 AC 12 ms
6,272 KB
testcase_29 AC 191 ms
14,080 KB
testcase_30 AC 31 ms
7,040 KB
testcase_31 AC 97 ms
7,808 KB
testcase_32 AC 113 ms
11,904 KB
testcase_33 AC 88 ms
10,112 KB
testcase_34 AC 137 ms
11,520 KB
testcase_35 AC 73 ms
8,064 KB
testcase_36 AC 147 ms
12,800 KB
testcase_37 AC 90 ms
9,856 KB
testcase_38 AC 15 ms
6,528 KB
testcase_39 AC 20 ms
6,912 KB
testcase_40 AC 43 ms
8,448 KB
testcase_41 AC 19 ms
6,784 KB
testcase_42 AC 11 ms
6,144 KB
testcase_43 AC 12 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
C = int(raw_input())
V = int(raw_input())
S = map(int, raw_input().split())
T = map(int, raw_input().split())
Y = map(int, raw_input().split())
M = map(int, raw_input().split())
road = []
for i in range(0, V):
	road.append([S[i]-1, T[i]-1, Y[i], M[i]])
road.sort(key=lambda val: val[0])
dp = []
for i in range(0, V+1):
	lst = []
	for j in range(0, N):
		lst.append([])
	dp.append(lst)
dp[0][0].append([0, C])
for i in range(0, V):
	for j in range(0, N):
		for k in range(0, len(dp[i][j])):
			dp[i+1][j].append(dp[i][j][k])
	for j in range(0, N):
		if j == road[i][0]:
			next = road[i][1]
			for k in range(0, len(dp[i][j])):
				newtime = dp[i][j][k][0] + road[i][3]
				newcost = dp[i][j][k][1] - road[i][2]
				flag = True
				for p in range(0, len(dp[i+1][next])):
					time = dp[i+1][next][p][0]
					cost = dp[i+1][next][p][1]
					if time < newtime and newcost < cost:
						flag = False
						break
				if flag: dp[i+1][next].append([newtime, newcost])
if dp[V][N-1] == []: print -1
else:
	min = 1000000000
	for i in range(0, len(dp[V][N-1])):
		if dp[V][N-1][i][0] < min and dp[V][N-1][i][1] >= 0: min = dp[V][N-1][i][0]
	if min == 1000000000: print -1
	else: print min
0