結果

問題 No.807 umg tours
ユーザー silversmithsilversmith
提出日時 2019-04-05 06:08:39
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,083 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 1,513,944 KB
最終ジャッジ日時 2024-12-30 13:11:37
合計ジャッジ時間 83,238 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 AC 107 ms
79,616 KB
testcase_05 MLE -
testcase_06 AC 132 ms
77,056 KB
testcase_07 MLE -
testcase_08 AC 53 ms
53,504 KB
testcase_09 MLE -
testcase_10 AC 54 ms
54,144 KB
testcase_11 MLE -
testcase_12 TLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import os
import sys
import heapq

N, M = map(int, input().split(' '))
e={}
for i in range(N):
    for j in range(N):
        e[(i,j)] = sys.maxsize

for i in range(M):
    v1, v2, cost = [int(x) for x in input().split(' ')]
    e[(v1 -1, v2 -1)] = cost
    e[(v2 -1, v1 -1)] = cost

d = [sys.maxsize] * N
d_exe = [sys.maxsize] * N
d[0] = 0
d_exe[0] = 0
h = []
for i in range(N):
    heapq.heappush(h, (d[i],i))
while len(h) > 0:
    p = heapq.heappop(h)
    for idx, (_, i) in enumerate(h):
        if e[(p[1], i)] < sys.maxsize:
            alt = p[0] + e[(p[1], i)]
            if d[i] < alt : continue
            d[i] = alt
            h[idx] = (alt, i)
    heapq.heapify(h)

h = []    
for i in range(N):
    heapq.heappush(h, (d_exe[i],i))
while len(h) > 0:
    p = heapq.heappop(h)
    for idx, (_, i) in enumerate(h):
        if e[(p[1], i)] < sys.maxsize:
            alt = min(p[0] + e[(p[1], i)], d[p[1]])
            if d_exe[i] < alt : continue
            d_exe[i] = alt
            h[idx] = (alt, i)
    heapq.heapify(h)

for i in range(N):
    print(d[i] + d_exe[i])
0