結果

問題 No.1 道のショートカット
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-20 13:36:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 500 bytes
コンパイル時間 724 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 67,524 KB
最終ジャッジ日時 2024-10-20 13:37:03
合計ジャッジ時間 4,233 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,332 KB
testcase_01 AC 36 ms
52,660 KB
testcase_02 AC 34 ms
52,748 KB
testcase_03 AC 34 ms
52,824 KB
testcase_04 AC 35 ms
52,216 KB
testcase_05 AC 36 ms
52,304 KB
testcase_06 AC 36 ms
53,228 KB
testcase_07 AC 35 ms
53,644 KB
testcase_08 AC 52 ms
66,352 KB
testcase_09 AC 47 ms
63,264 KB
testcase_10 AC 51 ms
65,212 KB
testcase_11 AC 53 ms
66,532 KB
testcase_12 AC 61 ms
66,836 KB
testcase_13 AC 57 ms
67,524 KB
testcase_14 AC 38 ms
58,776 KB
testcase_15 AC 38 ms
58,776 KB
testcase_16 AC 42 ms
60,988 KB
testcase_17 AC 40 ms
58,836 KB
testcase_18 AC 39 ms
58,500 KB
testcase_19 AC 43 ms
59,292 KB
testcase_20 AC 52 ms
64,844 KB
testcase_21 AC 42 ms
61,080 KB
testcase_22 AC 41 ms
59,376 KB
testcase_23 AC 53 ms
66,340 KB
testcase_24 AC 54 ms
66,204 KB
testcase_25 AC 48 ms
64,256 KB
testcase_26 AC 46 ms
62,284 KB
testcase_27 AC 56 ms
66,932 KB
testcase_28 AC 39 ms
59,120 KB
testcase_29 AC 50 ms
64,740 KB
testcase_30 AC 43 ms
61,536 KB
testcase_31 AC 45 ms
62,656 KB
testcase_32 AC 49 ms
64,412 KB
testcase_33 AC 53 ms
63,840 KB
testcase_34 AC 55 ms
66,776 KB
testcase_35 AC 41 ms
60,512 KB
testcase_36 AC 49 ms
64,288 KB
testcase_37 AC 44 ms
61,384 KB
testcase_38 AC 39 ms
58,028 KB
testcase_39 AC 40 ms
58,768 KB
testcase_40 AC 42 ms
61,488 KB
testcase_41 AC 34 ms
52,920 KB
testcase_42 AC 35 ms
52,528 KB
testcase_43 AC 39 ms
58,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
C=int(input())
e=[[] for i in range(n)]
m=int(input())
S=list(map(int,input().split()))
T=list(map(int,input().split()))
Y=list(map(int,input().split()))
M=list(map(int,input().split()))
for i in range(m):
  e[S[i]-1]+=[(T[i]-1,Y[i],M[i])]
X=10**10
q=[[X]*(C+1) for i in range(n)]
q[0][C]=0
for s in range(n-1):
  for c in range(C+1):
    if q[s][c]<X:
      for t,y,m in e[s]:
        if c-y>=0:
          q[t][c-y]=min(q[t][c-y],q[s][c]+m)
print(min(q[n-1]) if min(q[n-1])<X else -1)
0