結果

問題 No.807 umg tours
ユーザー titiatitia
提出日時 2019-03-22 22:13:00
言語 PyPy3
(7.3.15)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 861 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 843,368 KB
最終ジャッジ日時 2024-05-02 23:25:39
合計ジャッジ時間 14,223 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
61,824 KB
testcase_01 AC 44 ms
62,720 KB
testcase_02 AC 50 ms
65,664 KB
testcase_03 AC 48 ms
64,640 KB
testcase_04 AC 44 ms
61,824 KB
testcase_05 AC 47 ms
63,488 KB
testcase_06 AC 48 ms
64,768 KB
testcase_07 AC 50 ms
65,920 KB
testcase_08 AC 36 ms
53,888 KB
testcase_09 AC 37 ms
54,656 KB
testcase_10 AC 38 ms
54,528 KB
testcase_11 AC 941 ms
140,716 KB
testcase_12 AC 678 ms
145,044 KB
testcase_13 AC 729 ms
148,864 KB
testcase_14 AC 341 ms
108,128 KB
testcase_15 AC 297 ms
102,496 KB
testcase_16 AC 834 ms
153,304 KB
testcase_17 AC 1,041 ms
183,064 KB
testcase_18 AC 1,778 ms
237,384 KB
testcase_19 AC 1,130 ms
185,780 KB
testcase_20 AC 299 ms
118,992 KB
testcase_21 AC 327 ms
119,608 KB
testcase_22 AC 171 ms
96,128 KB
testcase_23 AC 156 ms
91,864 KB
testcase_24 MLE -
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.popleft()
    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