結果

問題 No.807 umg tours
ユーザー titiatitia
提出日時 2019-03-22 22:14:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 857 bytes
コンパイル時間 1,066 ms
コンパイル使用メモリ 81,416 KB
実行使用メモリ 140,132 KB
最終ジャッジ日時 2023-10-19 09:35:32
合計ジャッジ時間 6,964 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
66,212 KB
testcase_01 AC 61 ms
66,412 KB
testcase_02 AC 65 ms
68,476 KB
testcase_03 AC 61 ms
66,424 KB
testcase_04 AC 55 ms
64,044 KB
testcase_05 AC 56 ms
64,280 KB
testcase_06 AC 60 ms
66,260 KB
testcase_07 AC 60 ms
66,400 KB
testcase_08 AC 44 ms
55,468 KB
testcase_09 AC 44 ms
55,468 KB
testcase_10 AC 44 ms
55,468 KB
testcase_11 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
E=[list(map(int,input().split())) for i in range(M)]

EDGE=[[] for i in range(N+1)]

for x,y,c in E:
    EDGE[x].append([y,c])
    EDGE[y].append([x,c])

MIN=[float("inf")]*(N+1)
MIN2=[float("inf")]*(N+1)

MIN[1]=0
MIN2[1]=0

from collections import deque
QUE=deque([[1,0,0]])

while QUE:
    town,dist,maxdist=QUE.pop()
    for to,cost in EDGE[town]:
        Flag=0
        if maxdist>cost:
            maxdist_town=maxdist
        else:
            maxdist_town=cost
            

        if MIN[to]>dist+cost:
            MIN[to]=dist+cost
            Flag=1

        if MIN2[to]>dist+cost-maxdist_town:
            MIN2[to]=dist+cost-maxdist_town
            Flag=1

        if Flag:
            QUE.append([to,dist+cost,maxdist_town])

for i in range(1,N+1):
    print(MIN[i]+MIN2[i])
0