結果

問題 No.1 道のショートカット
ユーザー szkhtsszkhts
提出日時 2021-12-29 11:28:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,446 ms / 5,000 ms
コード長 643 bytes
コンパイル時間 655 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-10-03 17:44:09
合計ジャッジ時間 9,279 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,880 KB
testcase_08 AC 385 ms
11,136 KB
testcase_09 AC 82 ms
10,880 KB
testcase_10 AC 248 ms
10,880 KB
testcase_11 AC 364 ms
11,008 KB
testcase_12 AC 1,446 ms
11,264 KB
testcase_13 AC 1,272 ms
11,136 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 35 ms
10,880 KB
testcase_17 AC 27 ms
10,880 KB
testcase_18 AC 28 ms
10,880 KB
testcase_19 AC 29 ms
10,880 KB
testcase_20 AC 73 ms
10,880 KB
testcase_21 AC 37 ms
10,880 KB
testcase_22 AC 30 ms
10,880 KB
testcase_23 AC 518 ms
11,008 KB
testcase_24 AC 503 ms
10,880 KB
testcase_25 AC 99 ms
10,880 KB
testcase_26 AC 57 ms
10,752 KB
testcase_27 AC 729 ms
10,880 KB
testcase_28 AC 26 ms
10,752 KB
testcase_29 AC 140 ms
11,008 KB
testcase_30 AC 34 ms
10,752 KB
testcase_31 AC 58 ms
10,880 KB
testcase_32 AC 279 ms
11,136 KB
testcase_33 AC 127 ms
10,880 KB
testcase_34 AC 535 ms
11,008 KB
testcase_35 AC 28 ms
10,880 KB
testcase_36 AC 90 ms
10,880 KB
testcase_37 AC 38 ms
10,880 KB
testcase_38 AC 26 ms
10,752 KB
testcase_39 AC 29 ms
10,880 KB
testcase_40 AC 31 ms
10,752 KB
testcase_41 AC 27 ms
10,880 KB
testcase_42 AC 26 ms
10,752 KB
testcase_43 AC 27 ms
11,008 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()))

f_inf = float('inf')
dp = [[f_inf] * (c + 1) for _ in range(n + 1)]

dp[1][c] = 0
for i in range(1, n + 1):
    for j in range(c, -1, -1):
        if dp[i][j] != f_inf:
            for k in range(v):
                if i == s[k] and j - y[k] >= 0:
                    dp[t[k]][j - y[k]] = min(dp[i][j] + m[k], dp[t[k]][j - y[k]])

ans = f_inf
for i in range(c + 1):
    ans = min(ans, dp[n][i])

if ans >= f_inf:
    print(-1)
else:
    print(ans)
0