結果

問題 No.1 道のショートカット
ユーザー Yuta123456Yuta123456
提出日時 2020-05-21 19:51:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 789 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-08 05:26:25
合計ジャッジ時間 2,269 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 26 ms
10,880 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 27 ms
10,624 KB
testcase_20 RE -
testcase_21 AC 28 ms
10,752 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 32 ms
10,752 KB
testcase_27 RE -
testcase_28 AC 25 ms
10,752 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 28 ms
10,752 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 25 ms
10,752 KB
testcase_43 AC 27 ms
10,880 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()))
adjacent_list = [[] for i in range(n+1)]
for i in range(v):
    adjacent_list[s[i]].append([t[i],y[i],m[i]])
dp = [[10**9 for i in range(c+1)] for j in range(n+1)]
#dp[i][j] := i番目の街に行き、j円使った時の最短時間
dp[0][0] = 0
dp[1][0] = 0
for i in range(1,n+1):
    for j in range(c+1):
        if dp[i][j] != 10**9:
            for next_node,cost, time in adjacent_list[i]:
                dp[next_node][j+cost] = min(dp[next_node][j+cost], dp[i][j] + time)
ans = 10**9
for i in range(c+1):
    ans = min(ans, dp[-1][i])
if ans == 10**9:
    print(-1)
else:
    print(ans)
0