結果
問題 | No.1449 新プロランド |
ユーザー | lloyz |
提出日時 | 2022-08-21 14:49:35 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 536 bytes |
コンパイル時間 | 151 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 211,736 KB |
最終ジャッジ日時 | 2024-06-06 11:10:58 |
合計ジャッジ時間 | 3,871 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
59,648 KB |
testcase_01 | AC | 43 ms
54,016 KB |
testcase_02 | AC | 44 ms
54,016 KB |
testcase_03 | AC | 100 ms
77,056 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
from heapq import heapify, heappop, heappush from collections import defaultdict n, m = map(int, input().split()) edge = defaultdict(list) for _ in range(m): a, b, c = map(int, input().split()) a -= 1 b -= 1 edge[a].append((b, c)) edge[b].append((a, c)) T = list(map(int, input().split())) H = [(T[0], T[0], 0)] heapify(H) while H: t, et, cp = heappop(H) if cp == n - 1: print(t) break for np, tt in edge[cp]: nt = t + tt // et heappush(H, (nt + T[np], et + T[np], np))