結果

問題 No.1 道のショートカット
ユーザー rarpipipirarpipipi
提出日時 2023-12-31 03:33:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 776 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 71,768 KB
最終ジャッジ日時 2024-09-27 17:00:43
合計ジャッジ時間 4,318 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,788 KB
testcase_01 AC 44 ms
54,216 KB
testcase_02 AC 44 ms
54,936 KB
testcase_03 AC 44 ms
54,516 KB
testcase_04 AC 43 ms
54,732 KB
testcase_05 AC 44 ms
53,884 KB
testcase_06 AC 46 ms
54,132 KB
testcase_07 AC 46 ms
54,444 KB
testcase_08 AC 64 ms
67,264 KB
testcase_09 AC 52 ms
63,108 KB
testcase_10 AC 60 ms
67,324 KB
testcase_11 AC 67 ms
71,012 KB
testcase_12 AC 72 ms
71,548 KB
testcase_13 AC 66 ms
71,768 KB
testcase_14 AC 44 ms
55,408 KB
testcase_15 AC 45 ms
54,428 KB
testcase_16 AC 45 ms
56,160 KB
testcase_17 AC 44 ms
54,476 KB
testcase_18 AC 47 ms
54,564 KB
testcase_19 AC 44 ms
54,080 KB
testcase_20 AC 49 ms
61,664 KB
testcase_21 AC 43 ms
55,240 KB
testcase_22 AC 44 ms
54,460 KB
testcase_23 AC 67 ms
69,920 KB
testcase_24 AC 68 ms
70,780 KB
testcase_25 AC 52 ms
61,228 KB
testcase_26 AC 47 ms
54,648 KB
testcase_27 AC 72 ms
71,004 KB
testcase_28 AC 43 ms
53,944 KB
testcase_29 AC 68 ms
69,968 KB
testcase_30 AC 55 ms
63,636 KB
testcase_31 AC 66 ms
69,316 KB
testcase_32 AC 59 ms
66,896 KB
testcase_33 AC 56 ms
65,512 KB
testcase_34 AC 67 ms
70,832 KB
testcase_35 AC 58 ms
64,960 KB
testcase_36 AC 58 ms
66,224 KB
testcase_37 AC 61 ms
67,716 KB
testcase_38 AC 44 ms
54,736 KB
testcase_39 AC 46 ms
54,520 KB
testcase_40 AC 45 ms
55,092 KB
testcase_41 AC 43 ms
55,320 KB
testcase_42 AC 45 ms
54,100 KB
testcase_43 AC 46 ms
54,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF=float('inf')
n=int(input())
c=int(input())
v=int(input())

from collections import defaultdict
edge=defaultdict(list)

s=list(map(lambda x:int(x)-1,input().split()))
t=list(map(lambda x:int(x)-1,input().split()))
y=list(map(int,input().split()))
m=list(map(int,input().split()))
for i in range(v):
    si,ti,yi,mi=s[i],t[i],y[i],m[i]
    edge[si].append((ti,yi,mi))

dp=[[] for i in range(n)]
dp[0]=[(0,0)]
for ci in range(n):
    for cy,cm in dp[ci]:
        for ni,ny,nm in edge[ci]:
            if cy+ny<=c:
                for niy,nim in dp[ni]:
                    if niy<cy+ny and nim<cm+nm:
                        break
                else:
                    dp[ni].append((cy+ny,cm+nm))

if dp[-1]:
    print(min([mm for yy,mm in dp[-1]]))
else:
    print(-1)
0