結果

問題 No.1 道のショートカット
ユーザー maninimanini
提出日時 2021-02-12 15:01:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 1,438 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 77,956 KB
最終ジャッジ日時 2024-07-19 08:15:08
合計ジャッジ時間 4,106 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,668 KB
testcase_01 AC 37 ms
52,856 KB
testcase_02 AC 37 ms
53,672 KB
testcase_03 AC 37 ms
53,796 KB
testcase_04 AC 36 ms
53,552 KB
testcase_05 AC 35 ms
54,120 KB
testcase_06 AC 36 ms
52,884 KB
testcase_07 AC 35 ms
53,680 KB
testcase_08 AC 86 ms
76,848 KB
testcase_09 AC 60 ms
68,076 KB
testcase_10 AC 92 ms
76,716 KB
testcase_11 AC 105 ms
77,132 KB
testcase_12 AC 124 ms
77,712 KB
testcase_13 AC 119 ms
77,956 KB
testcase_14 AC 36 ms
54,928 KB
testcase_15 AC 34 ms
53,244 KB
testcase_16 AC 48 ms
64,192 KB
testcase_17 AC 34 ms
52,832 KB
testcase_18 AC 37 ms
53,400 KB
testcase_19 AC 38 ms
53,872 KB
testcase_20 AC 84 ms
76,592 KB
testcase_21 AC 49 ms
64,948 KB
testcase_22 AC 38 ms
54,208 KB
testcase_23 AC 117 ms
77,332 KB
testcase_24 AC 114 ms
76,812 KB
testcase_25 AC 96 ms
76,648 KB
testcase_26 AC 83 ms
76,252 KB
testcase_27 AC 128 ms
77,824 KB
testcase_28 AC 36 ms
53,908 KB
testcase_29 AC 67 ms
73,564 KB
testcase_30 AC 47 ms
63,088 KB
testcase_31 AC 51 ms
65,436 KB
testcase_32 AC 85 ms
76,932 KB
testcase_33 AC 71 ms
75,176 KB
testcase_34 AC 104 ms
76,860 KB
testcase_35 AC 39 ms
59,464 KB
testcase_36 AC 62 ms
69,468 KB
testcase_37 AC 44 ms
62,936 KB
testcase_38 AC 34 ms
53,116 KB
testcase_39 AC 35 ms
53,432 KB
testcase_40 AC 42 ms
60,460 KB
testcase_41 AC 37 ms
53,952 KB
testcase_42 AC 34 ms
52,572 KB
testcase_43 AC 36 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:UTF-8
import sys
from heapq import heappush, heappop

MOD = 10 ** 9 + 7
INF = float('inf')

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()))     # スペース区切り連続数字

# ダイクストラ O((E+N)logN)
dist = [[] for _ in range(N)]    # dist[n]: ノード n に隣接する(ノード, 重み)をリストで持つ
for i in range(V):
    s = S[i] - 1
    t = T[i] - 1
    c = Y[i]
    d = M[i]
    dist[s].append((t, c, d))
    # dist[t].append((s, c, d))

ns = 0
hq = [(0, C, 0)]   # (distance, node)
dist_min = [[INF] * (C + 1) for _ in range(N)]
dist_min[ns][C] = 0
seen = [[False] * (C + 1) for _ in range(N)]

while hq:
    d, c, v = heappop(hq)   # ノードを pop する
    if seen[v][c]:
        continue
    seen[v][c] = True
    for to, cost, dis in dist[v]:    # ノード v に隣接しているノードに対して
        if c - cost >= 0 and seen[to][c - cost] == False and d + dis < dist_min[to][c - cost]:
            dist_min[to][c - cost] = d + dis
            heappush(hq, (dist_min[to][c - cost], c - cost, to))

res = min(dist_min[N-1])
if res == INF:
    res = -1
print("{}".format(res))
0