結果

問題 No.807 umg tours
ユーザー tempura_pptempura_pp
提出日時 2019-03-17 01:43:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,284 ms / 4,000 ms
コード長 816 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 168,848 KB
最終ジャッジ日時 2024-11-23 18:46:43
合計ジャッジ時間 14,035 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
62,084 KB
testcase_01 AC 53 ms
64,460 KB
testcase_02 AC 56 ms
64,460 KB
testcase_03 AC 53 ms
63,700 KB
testcase_04 AC 49 ms
61,048 KB
testcase_05 AC 49 ms
61,716 KB
testcase_06 AC 61 ms
67,700 KB
testcase_07 AC 53 ms
64,636 KB
testcase_08 AC 37 ms
53,608 KB
testcase_09 AC 39 ms
53,700 KB
testcase_10 AC 40 ms
54,548 KB
testcase_11 AC 718 ms
135,992 KB
testcase_12 AC 715 ms
125,788 KB
testcase_13 AC 931 ms
144,268 KB
testcase_14 AC 474 ms
105,012 KB
testcase_15 AC 355 ms
98,576 KB
testcase_16 AC 955 ms
148,312 KB
testcase_17 AC 1,195 ms
162,684 KB
testcase_18 AC 1,212 ms
162,788 KB
testcase_19 AC 1,109 ms
157,608 KB
testcase_20 AC 641 ms
122,048 KB
testcase_21 AC 677 ms
124,940 KB
testcase_22 AC 336 ms
97,844 KB
testcase_23 AC 289 ms
93,488 KB
testcase_24 AC 573 ms
149,932 KB
testcase_25 AC 1,284 ms
168,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
def solve() : 
    N, M = map(int, input().split())

    edge = [[] for i in range(2*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))
        edge[a+N].append((c, b+N))
        edge[b+N].append((c, a+N))
        edge[a].append((0, b+N))
        edge[b].append((0, a+N))

    dist=[float('inf')]*(2*N)
    dist[0]=dist[N]=0

    pq = []
    heappush(pq, (0,0))
    heappush(pq, (0,N))
    while pq:
        d, cur = heappop(pq)
        if d > dist[cur]: continue

        for cost, to in edge[cur]:
            if dist[to]>d+cost : 
                dist[to]=d+cost
                heappush(pq, (d+cost,to))
    for i in range(N) :
        print(dist[i]+dist[i+N])
solve()
0