結果

問題 No.807 umg tours
ユーザー titiatitia
提出日時 2019-03-22 22:17:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 934 ms / 4,000 ms
コード長 917 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 159,204 KB
最終ジャッジ日時 2024-05-02 23:26:52
合計ジャッジ時間 10,237 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,912 KB
testcase_01 AC 54 ms
61,952 KB
testcase_02 AC 56 ms
64,256 KB
testcase_03 AC 61 ms
63,744 KB
testcase_04 AC 48 ms
54,784 KB
testcase_05 AC 56 ms
61,952 KB
testcase_06 AC 63 ms
64,640 KB
testcase_07 AC 59 ms
63,488 KB
testcase_08 AC 47 ms
54,016 KB
testcase_09 AC 47 ms
53,888 KB
testcase_10 AC 48 ms
54,528 KB
testcase_11 AC 701 ms
137,856 KB
testcase_12 AC 473 ms
122,240 KB
testcase_13 AC 637 ms
139,772 KB
testcase_14 AC 307 ms
103,900 KB
testcase_15 AC 264 ms
98,700 KB
testcase_16 AC 717 ms
143,696 KB
testcase_17 AC 748 ms
152,684 KB
testcase_18 AC 934 ms
159,204 KB
testcase_19 AC 873 ms
158,636 KB
testcase_20 AC 312 ms
114,056 KB
testcase_21 AC 335 ms
116,096 KB
testcase_22 AC 190 ms
93,440 KB
testcase_23 AC 174 ms
90,112 KB
testcase_24 AC 320 ms
137,124 KB
testcase_25 AC 702 ms
153,472 KB
権限があれば一括ダウンロードができます

ソースコード

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=[10**15]*(N+1)
MIN2=[10**15]*(N+1)

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

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

while QUE:
    town,dist,maxdist=QUE.popleft()
    if MIN[town]<dist and MIN2[town]<dist-maxdist:
        continue
    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