結果

問題 No.1 道のショートカット
ユーザー kyunakyuna
提出日時 2018-06-15 04:37:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 3,036 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-20 16:37:07
合計ジャッジ時間 21,422 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 2,375 ms
10,880 KB
testcase_09 AC 1,151 ms
10,880 KB
testcase_10 AC 618 ms
10,752 KB
testcase_11 AC 761 ms
10,880 KB
testcase_12 AC 2,940 ms
11,136 KB
testcase_13 AC 3,036 ms
11,264 KB
testcase_14 AC 93 ms
10,624 KB
testcase_15 AC 32 ms
10,624 KB
testcase_16 AC 348 ms
10,880 KB
testcase_17 AC 36 ms
10,624 KB
testcase_18 AC 108 ms
10,624 KB
testcase_19 AC 153 ms
10,880 KB
testcase_20 AC 231 ms
10,624 KB
testcase_21 AC 219 ms
10,752 KB
testcase_22 AC 112 ms
10,752 KB
testcase_23 AC 708 ms
10,880 KB
testcase_24 AC 823 ms
10,880 KB
testcase_25 AC 297 ms
10,752 KB
testcase_26 AC 171 ms
10,624 KB
testcase_27 AC 1,176 ms
10,752 KB
testcase_28 AC 38 ms
10,624 KB
testcase_29 AC 220 ms
10,752 KB
testcase_30 AC 49 ms
10,752 KB
testcase_31 AC 76 ms
10,880 KB
testcase_32 AC 1,273 ms
10,880 KB
testcase_33 AC 805 ms
10,880 KB
testcase_34 AC 895 ms
10,880 KB
testcase_35 AC 34 ms
10,880 KB
testcase_36 AC 280 ms
10,880 KB
testcase_37 AC 48 ms
10,752 KB
testcase_38 AC 60 ms
10,752 KB
testcase_39 AC 249 ms
11,008 KB
testcase_40 AC 89 ms
10,880 KB
testcase_41 AC 43 ms
10,880 KB
testcase_42 AC 30 ms
10,624 KB
testcase_43 AC 33 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, C, V = [int(input()) for _ in range(3)]
S = [int(x) - 1 for x in input().split()]
T = [int(x) - 1 for x in input().split()]
Y = list(map(int, input().split()))
M = list(map(int, input().split()))
e = [[] for _ in [0] * N]
INF = float('inf')
dp = [[INF] * (C + 1) for _ in [0] * N]
dp[0][0] = 0
for i in range(N):
    for j in range(C):
        for k in range(V):
            if S[k] == i and j + Y[k] <= C:
                dp[T[k]][j + Y[k]] = min(dp[T[k]][j + Y[k]], dp[i][j] + M[k])
ans = min(dp[N - 1])
print(-1 if ans == INF else ans)
0