結果

問題 No.1 道のショートカット
ユーザー ああいいああいい
提出日時 2022-03-02 21:08:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 667 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 65,420 KB
最終ジャッジ日時 2024-07-16 11:44:15
合計ジャッジ時間 3,995 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,944 KB
testcase_01 AC 38 ms
52,336 KB
testcase_02 AC 36 ms
52,460 KB
testcase_03 AC 35 ms
52,824 KB
testcase_04 AC 37 ms
52,824 KB
testcase_05 AC 40 ms
53,376 KB
testcase_06 AC 38 ms
52,400 KB
testcase_07 AC 40 ms
54,144 KB
testcase_08 AC 57 ms
65,356 KB
testcase_09 AC 53 ms
63,716 KB
testcase_10 AC 50 ms
63,728 KB
testcase_11 AC 50 ms
65,204 KB
testcase_12 AC 55 ms
65,072 KB
testcase_13 AC 56 ms
65,308 KB
testcase_14 AC 44 ms
61,712 KB
testcase_15 AC 40 ms
58,720 KB
testcase_16 AC 47 ms
62,932 KB
testcase_17 AC 45 ms
60,812 KB
testcase_18 AC 51 ms
62,516 KB
testcase_19 AC 48 ms
62,744 KB
testcase_20 AC 49 ms
64,212 KB
testcase_21 AC 49 ms
64,480 KB
testcase_22 AC 49 ms
62,756 KB
testcase_23 AC 53 ms
65,200 KB
testcase_24 AC 54 ms
63,828 KB
testcase_25 AC 52 ms
64,488 KB
testcase_26 AC 46 ms
62,008 KB
testcase_27 AC 53 ms
65,420 KB
testcase_28 AC 44 ms
60,976 KB
testcase_29 AC 49 ms
65,072 KB
testcase_30 AC 44 ms
62,540 KB
testcase_31 AC 46 ms
62,140 KB
testcase_32 AC 51 ms
63,824 KB
testcase_33 AC 50 ms
63,564 KB
testcase_34 AC 52 ms
64,276 KB
testcase_35 AC 44 ms
61,388 KB
testcase_36 AC 51 ms
63,252 KB
testcase_37 AC 44 ms
60,992 KB
testcase_38 AC 43 ms
61,916 KB
testcase_39 AC 47 ms
61,988 KB
testcase_40 AC 45 ms
62,252 KB
testcase_41 AC 44 ms
60,660 KB
testcase_42 AC 35 ms
53,676 KB
testcase_43 AC 41 ms
58,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
C = int(input())
V = 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()))
G = [[] for _ in range(N+1)]
for i in range(V):
    G[S[i]].append((T[i],Y[i],M[i]))
inf = 1 << 30
dp = [[inf] * (C + 1) for _ in range(N+1)]
dp[1][0] = 0
for i in range(1,N+1):
    for c in range(C+1):
        for t,y,cc in G[i]:
            if c + y <= C:
                if dp[t][c+y] > dp[i][c] + cc:
                    dp[t][c+y] = dp[i][c] + cc
_min = inf
for c in range(C+1):
    if dp[-1][c] < _min:
        _min = dp[-1][c]
if _min == inf:
    _min = -1
print(_min)
0