結果

問題 No.1 道のショートカット
ユーザー ytftytft
提出日時 2022-10-31 23:57:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 497 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-07-08 11:25:58
合計ジャッジ時間 4,232 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,016 KB
testcase_01 AC 36 ms
53,888 KB
testcase_02 AC 40 ms
54,016 KB
testcase_03 AC 42 ms
53,376 KB
testcase_04 AC 39 ms
53,632 KB
testcase_05 AC 38 ms
54,144 KB
testcase_06 AC 37 ms
54,016 KB
testcase_07 AC 35 ms
54,144 KB
testcase_08 AC 71 ms
74,624 KB
testcase_09 AC 69 ms
75,392 KB
testcase_10 AC 78 ms
77,440 KB
testcase_11 AC 81 ms
77,440 KB
testcase_12 AC 85 ms
77,312 KB
testcase_13 AC 81 ms
77,184 KB
testcase_14 AC 50 ms
66,560 KB
testcase_15 AC 40 ms
60,544 KB
testcase_16 AC 61 ms
71,720 KB
testcase_17 AC 48 ms
64,128 KB
testcase_18 AC 64 ms
70,656 KB
testcase_19 AC 70 ms
74,112 KB
testcase_20 AC 77 ms
76,800 KB
testcase_21 AC 68 ms
74,880 KB
testcase_22 AC 60 ms
69,888 KB
testcase_23 AC 71 ms
72,832 KB
testcase_24 AC 72 ms
73,600 KB
testcase_25 AC 81 ms
77,164 KB
testcase_26 AC 75 ms
76,672 KB
testcase_27 AC 70 ms
75,628 KB
testcase_28 AC 48 ms
64,768 KB
testcase_29 AC 68 ms
74,112 KB
testcase_30 AC 59 ms
68,864 KB
testcase_31 AC 57 ms
67,840 KB
testcase_32 AC 84 ms
76,800 KB
testcase_33 AC 78 ms
77,184 KB
testcase_34 AC 69 ms
72,576 KB
testcase_35 AC 44 ms
63,488 KB
testcase_36 AC 75 ms
77,056 KB
testcase_37 AC 48 ms
64,896 KB
testcase_38 AC 53 ms
67,072 KB
testcase_39 AC 65 ms
73,856 KB
testcase_40 AC 59 ms
70,400 KB
testcase_41 AC 47 ms
64,256 KB
testcase_42 AC 37 ms
54,272 KB
testcase_43 AC 39 ms
60,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,datetime
input=lambda:sys.stdin.readline().rstrip()
N,C,V=[int(input()) for i in range(3)]
S,T,Y,M=[list(map(int,input().split())) for i in range(4)]
con=[[] for i in range(N)]
for i in range(V):
	con[S[i]-1].append(i)
dp=[[float('inf') for i in range(C+1)] for j in range(N)]
dp[0][C]=0
for i in range(N):
	for j in range(C,-1,-1):
		for k in con[i]:
			if j-Y[k]>=0:
				dp[T[k]-1][j-Y[k]]=min(dp[T[k]-1][j-Y[k]],dp[i][j]+M[k])
ans=min(dp[N-1])
print(-1 if ans==float('inf') else ans)
0