結果

問題 No.1 道のショートカット
ユーザー tnodinotnodino
提出日時 2022-01-30 13:28:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 668 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 67,200 KB
最終ジャッジ日時 2024-06-11 08:12:15
合計ジャッジ時間 4,112 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,580 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 60 ms
66,432 KB
testcase_09 AC 64 ms
65,280 KB
testcase_10 AC 56 ms
65,408 KB
testcase_11 AC 60 ms
66,560 KB
testcase_12 AC 62 ms
66,944 KB
testcase_13 AC 61 ms
67,200 KB
testcase_14 AC 51 ms
62,336 KB
testcase_15 AC 43 ms
58,880 KB
testcase_16 AC 53 ms
62,720 KB
testcase_17 AC 49 ms
60,416 KB
testcase_18 AC 49 ms
60,928 KB
testcase_19 AC 51 ms
62,080 KB
testcase_20 AC 55 ms
63,616 KB
testcase_21 AC 50 ms
61,312 KB
testcase_22 AC 53 ms
61,056 KB
testcase_23 AC 61 ms
67,200 KB
testcase_24 AC 62 ms
66,560 KB
testcase_25 AC 57 ms
64,128 KB
testcase_26 AC 55 ms
62,464 KB
testcase_27 AC 61 ms
66,688 KB
testcase_28 AC 45 ms
60,000 KB
testcase_29 AC 56 ms
65,408 KB
testcase_30 AC 48 ms
61,440 KB
testcase_31 AC 56 ms
65,408 KB
testcase_32 AC 60 ms
65,408 KB
testcase_33 AC 57 ms
65,152 KB
testcase_34 AC 61 ms
66,688 KB
testcase_35 AC 49 ms
61,312 KB
testcase_36 AC 54 ms
64,404 KB
testcase_37 AC 50 ms
61,952 KB
testcase_38 AC 47 ms
60,672 KB
testcase_39 AC 54 ms
61,924 KB
testcase_40 AC 50 ms
62,720 KB
testcase_41 AC 45 ms
59,776 KB
testcase_42 AC 40 ms
52,096 KB
testcase_43 AC 42 ms
58,240 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 pre,yen,minute in G[pos]:
        for i in range(C):
            if i + yen <= C:
                DP[pre][i+yen] = min(DP[pre][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