結果

問題 No.807 umg tours
ユーザー sinsincoscossinsincoscos
提出日時 2019-03-17 13:38:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,542 ms / 4,000 ms
コード長 905 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 151,036 KB
最終ジャッジ日時 2024-11-23 18:49:00
合計ジャッジ時間 23,579 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
60,416 KB
testcase_01 AC 54 ms
60,672 KB
testcase_02 AC 54 ms
62,592 KB
testcase_03 AC 57 ms
62,080 KB
testcase_04 AC 53 ms
60,032 KB
testcase_05 AC 52 ms
60,160 KB
testcase_06 AC 56 ms
62,336 KB
testcase_07 AC 55 ms
61,696 KB
testcase_08 AC 42 ms
52,736 KB
testcase_09 AC 43 ms
52,864 KB
testcase_10 AC 42 ms
52,608 KB
testcase_11 AC 1,109 ms
112,828 KB
testcase_12 AC 1,448 ms
118,708 KB
testcase_13 AC 1,703 ms
129,280 KB
testcase_14 AC 800 ms
102,100 KB
testcase_15 AC 569 ms
95,488 KB
testcase_16 AC 1,637 ms
128,916 KB
testcase_17 AC 2,276 ms
146,060 KB
testcase_18 AC 2,356 ms
146,396 KB
testcase_19 AC 2,013 ms
141,392 KB
testcase_20 AC 1,087 ms
119,628 KB
testcase_21 AC 1,187 ms
122,640 KB
testcase_22 AC 539 ms
96,172 KB
testcase_23 AC 465 ms
91,472 KB
testcase_24 AC 1,146 ms
147,456 KB
testcase_25 AC 2,542 ms
151,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
import sys
input = sys.stdin.readline

def solve() : 
    N, M = map(int, input().split())

    edge = [[] for i in range(N)]
    for i in range(M):
        a, b, c = map(int, input().split())
        a-=1
        b-=1
        edge[a].append((c, b))
        edge[b].append((c, a))

    dist=[[float('inf'),float('inf')]for i in range(N)]
    dist[0]=[0,0]

    pq = []
    heappush(pq, (0,0,0))
    heappush(pq, (0,1,0))
    while pq:
        d, num, cur = heappop(pq)
        if d > dist[cur][num]: continue
        for cost, to in edge[cur]:
            ret = d+cost
            if dist[to][num]>ret : 
                dist[to][num]=ret
                heappush(pq, (ret,num,to))
            if num == 0 :
                if dist[to][1]>d : 
                    dist[to][1]=d
                    heappush(pq, (d,1,to))
    for x,y in dist :
        print(x+y)
solve()
0