結果

問題 No.1 道のショートカット
ユーザー tnodinotnodino
提出日時 2022-01-30 14:50:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 668 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 67,072 KB
最終ジャッジ日時 2024-06-11 08:16:51
合計ジャッジ時間 3,506 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 34 ms
51,968 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 35 ms
52,352 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 59 ms
66,560 KB
testcase_09 AC 58 ms
65,024 KB
testcase_10 AC 55 ms
65,152 KB
testcase_11 AC 60 ms
66,432 KB
testcase_12 AC 59 ms
67,072 KB
testcase_13 AC 60 ms
66,944 KB
testcase_14 AC 50 ms
61,952 KB
testcase_15 AC 41 ms
58,368 KB
testcase_16 AC 50 ms
62,976 KB
testcase_17 AC 46 ms
60,160 KB
testcase_18 AC 45 ms
60,544 KB
testcase_19 AC 47 ms
61,696 KB
testcase_20 AC 55 ms
63,616 KB
testcase_21 AC 50 ms
60,928 KB
testcase_22 AC 47 ms
60,288 KB
testcase_23 AC 59 ms
66,688 KB
testcase_24 AC 58 ms
66,304 KB
testcase_25 AC 51 ms
64,000 KB
testcase_26 AC 50 ms
62,208 KB
testcase_27 AC 61 ms
66,304 KB
testcase_28 AC 44 ms
59,392 KB
testcase_29 AC 57 ms
65,280 KB
testcase_30 AC 46 ms
61,184 KB
testcase_31 AC 54 ms
65,152 KB
testcase_32 AC 56 ms
65,024 KB
testcase_33 AC 53 ms
64,512 KB
testcase_34 AC 58 ms
66,048 KB
testcase_35 AC 45 ms
61,312 KB
testcase_36 AC 55 ms
64,256 KB
testcase_37 AC 46 ms
61,952 KB
testcase_38 AC 44 ms
60,160 KB
testcase_39 AC 47 ms
61,184 KB
testcase_40 AC 49 ms
62,336 KB
testcase_41 AC 44 ms
59,520 KB
testcase_42 AC 37 ms
51,840 KB
testcase_43 AC 42 ms
58,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1<<32
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)]
for i in range(V):
    G[S[i]-1].append((T[i]-1, Y[i], M[i]))
DP = [[INF] * (C+1) for _ in range(N)]
DP[0][0] = 0
for pos in range(N):
    for nxt,yen,minute in G[pos]:
        for i in range(C):
            if i + yen <= C:
                DP[nxt][i+yen] = min(DP[nxt][i+yen], DP[pos][i] + minute)
    for i in range(C):
        DP[pos][i+1] = min(DP[pos][i], DP[pos][i+1])
if DP[-1][-1] == INF:
    print(-1)
else:
    print(DP[-1][-1])
0