結果

問題 No.807 umg tours
ユーザー titiatitia
提出日時 2019-03-22 22:04:30
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 770 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 149,504 KB
最終ジャッジ日時 2024-09-19 05:25:24
合計ジャッジ時間 12,545 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
70,400 KB
testcase_01 AC 75 ms
72,448 KB
testcase_02 AC 80 ms
76,288 KB
testcase_03 AC 67 ms
72,960 KB
testcase_04 AC 65 ms
68,224 KB
testcase_05 AC 66 ms
69,504 KB
testcase_06 AC 83 ms
76,032 KB
testcase_07 AC 81 ms
75,776 KB
testcase_08 AC 41 ms
57,856 KB
testcase_09 AC 47 ms
59,392 KB
testcase_10 AC 55 ms
63,104 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 355 ms
116,872 KB
testcase_21 AC 385 ms
118,556 KB
testcase_22 AC 215 ms
95,488 KB
testcase_23 AC 182 ms
91,112 KB
testcase_24 TLE -
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

def roadsearch(town,dist,maxdist):
    #print(town,dist,maxdist)
    for to,cost in EDGE[town]:
        Flag=0
        maxdist_town=max(maxdist,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:
            roadsearch(to,dist+cost,maxdist_town)

roadsearch(1,0,0)  

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