結果

問題 No.1 道のショートカット
ユーザー gahougahou
提出日時 2016-11-10 18:04:07
言語 Python2
(2.7.18)
結果
AC  
実行時間 206 ms / 5,000 ms
コード長 545 bytes
コンパイル時間 47 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-07-20 16:27:19
合計ジャッジ時間 3,443 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,016 KB
testcase_01 AC 10 ms
6,144 KB
testcase_02 AC 10 ms
6,272 KB
testcase_03 AC 11 ms
6,144 KB
testcase_04 AC 11 ms
6,144 KB
testcase_05 AC 10 ms
6,144 KB
testcase_06 AC 10 ms
6,016 KB
testcase_07 AC 12 ms
6,144 KB
testcase_08 AC 165 ms
6,528 KB
testcase_09 AC 85 ms
6,272 KB
testcase_10 AC 52 ms
6,272 KB
testcase_11 AC 81 ms
6,528 KB
testcase_12 AC 206 ms
6,912 KB
testcase_13 AC 201 ms
6,656 KB
testcase_14 AC 21 ms
6,272 KB
testcase_15 AC 11 ms
6,272 KB
testcase_16 AC 36 ms
6,272 KB
testcase_17 AC 11 ms
6,272 KB
testcase_18 AC 20 ms
6,272 KB
testcase_19 AC 29 ms
6,144 KB
testcase_20 AC 36 ms
6,272 KB
testcase_21 AC 42 ms
6,272 KB
testcase_22 AC 25 ms
6,144 KB
testcase_23 AC 152 ms
6,272 KB
testcase_24 AC 174 ms
6,400 KB
testcase_25 AC 61 ms
6,272 KB
testcase_26 AC 46 ms
6,272 KB
testcase_27 AC 132 ms
6,272 KB
testcase_28 AC 13 ms
6,144 KB
testcase_29 AC 37 ms
6,400 KB
testcase_30 AC 16 ms
6,272 KB
testcase_31 AC 30 ms
6,144 KB
testcase_32 AC 112 ms
6,656 KB
testcase_33 AC 79 ms
6,400 KB
testcase_34 AC 135 ms
6,528 KB
testcase_35 AC 16 ms
6,272 KB
testcase_36 AC 33 ms
6,528 KB
testcase_37 AC 17 ms
6,272 KB
testcase_38 AC 15 ms
6,272 KB
testcase_39 AC 34 ms
6,144 KB
testcase_40 AC 17 ms
6,272 KB
testcase_41 AC 13 ms
6,144 KB
testcase_42 AC 11 ms
6,016 KB
testcase_43 AC 11 ms
6,272 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())
edge=[]
for i in xrange(V):
  edge.append((S[i]-1,T[i]-1,Y[i], M[i]))
edge=sorted(edge)
dp=[[10**9]*(C+1) for _ in xrange(N)]
dp[0][C]=0

for e in edge:
  for j in xrange(C+1):
    if j+e[2]>C: continue
    dp[e[1]][j] = min(dp[e[1]][j], dp[e[0]][j+e[2]]+e[3])

ans = 10**9
for i in xrange(C+1):
  ans = min(ans, dp[N-1][i])
if ans==10**9: print -1
else: print ans
0