結果

問題 No.1 道のショートカット
ユーザー n_knuun_knuu
提出日時 2015-05-07 17:59:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 808 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-07-20 16:13:46
合計ジャッジ時間 5,490 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
66,816 KB
testcase_01 AC 73 ms
66,688 KB
testcase_02 AC 75 ms
67,072 KB
testcase_03 AC 72 ms
66,688 KB
testcase_04 AC 72 ms
66,688 KB
testcase_05 AC 72 ms
67,072 KB
testcase_06 AC 72 ms
66,688 KB
testcase_07 AC 74 ms
68,096 KB
testcase_08 AC 109 ms
78,720 KB
testcase_09 AC 103 ms
78,080 KB
testcase_10 AC 100 ms
78,080 KB
testcase_11 AC 101 ms
78,720 KB
testcase_12 AC 113 ms
78,592 KB
testcase_13 AC 115 ms
78,720 KB
testcase_14 AC 104 ms
78,208 KB
testcase_15 AC 73 ms
67,456 KB
testcase_16 AC 102 ms
77,824 KB
testcase_17 AC 80 ms
70,912 KB
testcase_18 AC 98 ms
77,696 KB
testcase_19 AC 101 ms
78,208 KB
testcase_20 AC 107 ms
77,824 KB
testcase_21 AC 100 ms
78,208 KB
testcase_22 AC 90 ms
73,600 KB
testcase_23 AC 104 ms
78,080 KB
testcase_24 AC 112 ms
78,464 KB
testcase_25 AC 89 ms
72,960 KB
testcase_26 AC 94 ms
73,856 KB
testcase_27 AC 112 ms
78,336 KB
testcase_28 AC 87 ms
73,216 KB
testcase_29 AC 101 ms
78,720 KB
testcase_30 AC 84 ms
71,040 KB
testcase_31 AC 87 ms
72,576 KB
testcase_32 AC 115 ms
78,848 KB
testcase_33 AC 103 ms
78,464 KB
testcase_34 AC 114 ms
78,720 KB
testcase_35 AC 81 ms
71,040 KB
testcase_36 AC 89 ms
73,472 KB
testcase_37 AC 82 ms
71,552 KB
testcase_38 AC 91 ms
73,856 KB
testcase_39 AC 102 ms
78,080 KB
testcase_40 AC 80 ms
71,168 KB
testcase_41 AC 79 ms
70,656 KB
testcase_42 AC 72 ms
66,688 KB
testcase_43 AC 79 ms
68,480 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