結果

問題 No.1 道のショートカット
ユーザー nagitaosunagitaosu
提出日時 2020-03-13 00:57:19
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 696 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-07-20 16:45:34
合計ジャッジ時間 2,937 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 25 ms
10,880 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 52 ms
10,880 KB
testcase_09 AC 36 ms
10,880 KB
testcase_10 AC 36 ms
10,752 KB
testcase_11 AC 60 ms
10,880 KB
testcase_12 AC 86 ms
11,392 KB
testcase_13 AC 77 ms
11,136 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 25 ms
10,752 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 26 ms
10,752 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 32 ms
10,752 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 28 ms
10,880 KB
testcase_23 AC 117 ms
10,880 KB
testcase_24 AC 122 ms
10,880 KB
testcase_25 AC 44 ms
10,752 KB
testcase_26 AC 35 ms
10,752 KB
testcase_27 AC 98 ms
11,008 KB
testcase_28 AC 26 ms
10,752 KB
testcase_29 AC 37 ms
10,880 KB
testcase_30 AC 28 ms
10,752 KB
testcase_31 AC 36 ms
10,752 KB
testcase_32 AC 49 ms
10,880 KB
testcase_33 AC 38 ms
10,880 KB
testcase_34 AC 88 ms
10,880 KB
testcase_35 AC 28 ms
10,752 KB
testcase_36 AC 33 ms
10,752 KB
testcase_37 AC 29 ms
10,752 KB
testcase_38 AC 27 ms
10,880 KB
testcase_39 AC 29 ms
10,752 KB
testcase_40 AC 26 ms
10,880 KB
testcase_41 AC 27 ms
10,752 KB
testcase_42 AC 25 ms
10,752 KB
testcase_43 AC 25 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
input = sys.stdin.readline
INF = 10**9

n = int(input())
c = int(input())
v = int(input())
ss = [int(item) for item in input().split()]
ts = [int(item) for item in input().split()]
ys = [int(item) for item in input().split()]
ms = [int(item) for item in input().split()]
edge = []
for s, t, y, m in zip(ss, ts, ys, ms):
    s -= 1; t -= 1
    edge.append((s, t, y, m))
edge.sort()

dp = [[INF] * (c + 1) for _ in range(n)]
dp[0][c] = 0

for s, t, y, m in edge:
    for i in range(y, c + 1):
        if dp[s][i] == INF:
            continue
        dp[t][i - y] = min(dp[t][i - y], dp[s][i] + m)
ans = min(dp[-1])
if ans == INF:
    print(-1)
else:
    print(ans)
0