結果

問題 No.1 道のショートカット
ユーザー n_knuun_knuu
提出日時 2015-05-07 17:58:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 283 ms / 5,000 ms
コード長 808 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-07-20 16:13:40
合計ジャッジ時間 4,769 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,136 KB
testcase_01 AC 28 ms
11,008 KB
testcase_02 AC 29 ms
11,008 KB
testcase_03 AC 29 ms
11,008 KB
testcase_04 AC 30 ms
11,008 KB
testcase_05 AC 29 ms
11,008 KB
testcase_06 AC 28 ms
11,008 KB
testcase_07 AC 29 ms
11,136 KB
testcase_08 AC 209 ms
11,264 KB
testcase_09 AC 123 ms
11,520 KB
testcase_10 AC 78 ms
11,392 KB
testcase_11 AC 97 ms
11,264 KB
testcase_12 AC 271 ms
11,648 KB
testcase_13 AC 283 ms
11,520 KB
testcase_14 AC 44 ms
11,136 KB
testcase_15 AC 34 ms
11,136 KB
testcase_16 AC 59 ms
11,264 KB
testcase_17 AC 32 ms
11,008 KB
testcase_18 AC 40 ms
11,264 KB
testcase_19 AC 50 ms
11,136 KB
testcase_20 AC 56 ms
11,264 KB
testcase_21 AC 67 ms
11,136 KB
testcase_22 AC 48 ms
11,264 KB
testcase_23 AC 155 ms
11,392 KB
testcase_24 AC 184 ms
11,520 KB
testcase_25 AC 77 ms
11,264 KB
testcase_26 AC 62 ms
11,136 KB
testcase_27 AC 136 ms
11,392 KB
testcase_28 AC 32 ms
11,136 KB
testcase_29 AC 57 ms
11,392 KB
testcase_30 AC 33 ms
11,392 KB
testcase_31 AC 50 ms
11,264 KB
testcase_32 AC 159 ms
11,648 KB
testcase_33 AC 111 ms
11,520 KB
testcase_34 AC 180 ms
11,392 KB
testcase_35 AC 32 ms
11,392 KB
testcase_36 AC 52 ms
11,392 KB
testcase_37 AC 31 ms
11,136 KB
testcase_38 AC 33 ms
11,264 KB
testcase_39 AC 57 ms
11,264 KB
testcase_40 AC 34 ms
11,136 KB
testcase_41 AC 30 ms
11,136 KB
testcase_42 AC 29 ms
11,008 KB
testcase_43 AC 31 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from queue import PriorityQueue as PQueue
N = int(input())
C = int(input())
V = int(input())
S = list(map(lambda x: int(x)-1, input().split()))
T = list(map(lambda x: int(x)-1, input().split()))
Y = list(map(int, input().split()))
M = list(map(int, input().split()))
E = [[] for _ in range(N)]
for f, t, cost, time in zip(S, T, Y, M):
    E[t].append((f, cost, time))
INF = 10**7
dp = [[INF] * (C+1) for _ in range(N)]
for i in range(C+1):
    dp[0][i] = 0
while True:
    flag = False
    for t in range(N):
        for j in range(C+1):
            for f, cost, time in E[t]:
                if j >= cost and dp[t][j] > dp[f][j-cost] + time:
                    dp[t][j] = dp[f][j-cost] + time
                    flag = True
    if not flag:
        break
print(min(dp[N-1]) if min(dp[N-1]) != INF else -1)
0