結果

問題 No.1449 新プロランド
ユーザー lloyzlloyz
提出日時 2022-08-21 14:58:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-06-06 11:11:12
合計ジャッジ時間 3,739 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 51 ms
11,008 KB
testcase_03 AC 30 ms
11,008 KB
testcase_04 AC 35 ms
11,008 KB
testcase_05 AC 235 ms
13,696 KB
testcase_06 AC 152 ms
12,544 KB
testcase_07 AC 87 ms
11,904 KB
testcase_08 AC 156 ms
13,056 KB
testcase_09 AC 117 ms
11,776 KB
testcase_10 AC 94 ms
12,160 KB
testcase_11 AC 51 ms
11,776 KB
testcase_12 AC 138 ms
12,928 KB
testcase_13 AC 123 ms
11,904 KB
testcase_14 AC 46 ms
11,648 KB
testcase_15 AC 169 ms
12,928 KB
testcase_16 AC 107 ms
12,160 KB
testcase_17 AC 130 ms
12,288 KB
testcase_18 AC 28 ms
11,008 KB
testcase_19 AC 33 ms
11,392 KB
testcase_20 AC 27 ms
11,008 KB
testcase_21 AC 59 ms
11,776 KB
testcase_22 AC 42 ms
11,008 KB
testcase_23 AC 81 ms
12,160 KB
testcase_24 AC 101 ms
11,776 KB
testcase_25 AC 28 ms
10,880 KB
testcase_26 AC 28 ms
11,008 KB
testcase_27 AC 243 ms
13,824 KB
testcase_28 AC 161 ms
12,288 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