結果

問題 No.807 umg tours
ユーザー sinsincoscossinsincoscos
提出日時 2019-03-17 13:35:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,462 ms / 4,000 ms
コード長 854 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 165,116 KB
最終ジャッジ日時 2024-11-23 18:49:21
合計ジャッジ時間 16,862 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
60,672 KB
testcase_01 AC 59 ms
61,824 KB
testcase_02 AC 60 ms
61,824 KB
testcase_03 AC 58 ms
61,440 KB
testcase_04 AC 54 ms
60,288 KB
testcase_05 AC 54 ms
60,032 KB
testcase_06 AC 63 ms
64,236 KB
testcase_07 AC 56 ms
61,184 KB
testcase_08 AC 45 ms
53,120 KB
testcase_09 AC 45 ms
53,376 KB
testcase_10 AC 46 ms
53,184 KB
testcase_11 AC 853 ms
135,724 KB
testcase_12 AC 839 ms
123,792 KB
testcase_13 AC 1,130 ms
143,568 KB
testcase_14 AC 576 ms
105,280 KB
testcase_15 AC 423 ms
98,080 KB
testcase_16 AC 1,185 ms
146,888 KB
testcase_17 AC 1,462 ms
160,820 KB
testcase_18 AC 1,427 ms
160,740 KB
testcase_19 AC 1,332 ms
156,936 KB
testcase_20 AC 760 ms
122,036 KB
testcase_21 AC 871 ms
124,972 KB
testcase_22 AC 377 ms
96,260 KB
testcase_23 AC 339 ms
93,264 KB
testcase_24 AC 620 ms
150,448 KB
testcase_25 AC 1,454 ms
165,116 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(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