結果

問題 No.1 道のショートカット
ユーザー maninimanini
提出日時 2021-02-12 14:51:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,436 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 80,132 KB
最終ジャッジ日時 2024-07-19 08:08:20
合計ジャッジ時間 5,816 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
53,248 KB
testcase_03 AC 38 ms
52,608 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 40 ms
53,120 KB
testcase_06 AC 38 ms
52,864 KB
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 151 ms
78,484 KB
testcase_09 AC 161 ms
78,476 KB
testcase_10 AC 125 ms
78,084 KB
testcase_11 AC 138 ms
77,844 KB
testcase_12 AC 206 ms
80,132 KB
testcase_13 AC 207 ms
79,676 KB
testcase_14 AC 90 ms
76,672 KB
testcase_15 AC 37 ms
52,992 KB
testcase_16 WA -
testcase_17 AC 37 ms
52,736 KB
testcase_18 AC 107 ms
76,672 KB
testcase_19 AC 143 ms
78,108 KB
testcase_20 AC 115 ms
77,140 KB
testcase_21 WA -
testcase_22 AC 133 ms
77,936 KB
testcase_23 AC 135 ms
77,524 KB
testcase_24 AC 148 ms
78,720 KB
testcase_25 AC 159 ms
78,340 KB
testcase_26 AC 117 ms
76,932 KB
testcase_27 AC 171 ms
78,808 KB
testcase_28 AC 80 ms
76,416 KB
testcase_29 AC 91 ms
76,984 KB
testcase_30 AC 58 ms
67,072 KB
testcase_31 AC 67 ms
71,040 KB
testcase_32 AC 149 ms
78,520 KB
testcase_33 AC 133 ms
78,628 KB
testcase_34 AC 150 ms
78,416 KB
testcase_35 AC 46 ms
62,552 KB
testcase_36 AC 104 ms
76,888 KB
testcase_37 WA -
testcase_38 AC 47 ms
61,696 KB
testcase_39 WA -
testcase_40 AC 72 ms
72,576 KB
testcase_41 AC 42 ms
58,880 KB
testcase_42 AC 36 ms
52,736 KB
testcase_43 AC 37 ms
53,248 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