結果

問題 No.1449 新プロランド
ユーザー lloyzlloyz
提出日時 2022-08-21 14:58:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 80,600 KB
最終ジャッジ日時 2024-06-06 11:11:18
合計ジャッジ時間 5,345 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
54,396 KB
testcase_01 AC 48 ms
54,400 KB
testcase_02 AC 109 ms
76,800 KB
testcase_03 AC 64 ms
67,072 KB
testcase_04 AC 97 ms
76,800 KB
testcase_05 AC 303 ms
80,600 KB
testcase_06 AC 269 ms
79,612 KB
testcase_07 AC 147 ms
77,232 KB
testcase_08 AC 252 ms
79,936 KB
testcase_09 AC 161 ms
77,872 KB
testcase_10 AC 176 ms
78,064 KB
testcase_11 AC 135 ms
78,200 KB
testcase_12 AC 231 ms
79,524 KB
testcase_13 AC 167 ms
77,600 KB
testcase_14 AC 110 ms
77,568 KB
testcase_15 AC 236 ms
79,264 KB
testcase_16 AC 183 ms
78,024 KB
testcase_17 AC 199 ms
78,200 KB
testcase_18 AC 48 ms
59,008 KB
testcase_19 AC 47 ms
59,904 KB
testcase_20 AC 48 ms
59,264 KB
testcase_21 AC 123 ms
77,220 KB
testcase_22 AC 121 ms
77,136 KB
testcase_23 AC 160 ms
78,288 KB
testcase_24 AC 156 ms
77,520 KB
testcase_25 AC 49 ms
59,648 KB
testcase_26 AC 45 ms
54,016 KB
testcase_27 AC 280 ms
80,464 KB
testcase_28 AC 201 ms
78,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
from collections import defaultdict

n, m = map(int, input().split())
edge = defaultdict(list)
max_c = 0
for _ in range(m):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    max_c = max(max_c, c)
    edge[a].append((b, c))
    edge[b].append((a, c))
T = list(map(int, input().split()))

INF = 10**18
D = [[INF for _ in range(max_c + 2)] for _ in range(n)]
D[0][0] = 0

H = [(0, 0, 0)]
heapify(H)
while H:
    t, cp, et = heappop(H)
    if D[cp][et] < t:
        continue
    t += T[cp]
    et = min(et + T[cp], max_c + 1)
    for np, tt in edge[cp]:
        if D[np][et] > t + tt // et:
            D[np][et] = t + tt // et
            heappush(H, (t + tt // et, np, et))
print(min(D[n - 1]))
0