結果

問題 No.807 umg tours
ユーザー kohei2019kohei2019
提出日時 2022-04-14 01:19:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,354 ms / 4,000 ms
コード長 723 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 167,976 KB
最終ジャッジ日時 2024-06-06 12:01:30
合計ジャッジ時間 14,633 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
61,312 KB
testcase_01 AC 57 ms
64,384 KB
testcase_02 AC 63 ms
67,200 KB
testcase_03 AC 63 ms
65,024 KB
testcase_04 AC 53 ms
62,720 KB
testcase_05 AC 56 ms
62,720 KB
testcase_06 AC 63 ms
65,280 KB
testcase_07 AC 64 ms
66,432 KB
testcase_08 AC 42 ms
52,736 KB
testcase_09 AC 42 ms
53,248 KB
testcase_10 AC 42 ms
53,504 KB
testcase_11 AC 798 ms
137,528 KB
testcase_12 AC 780 ms
126,468 KB
testcase_13 AC 940 ms
145,456 KB
testcase_14 AC 487 ms
106,380 KB
testcase_15 AC 357 ms
98,964 KB
testcase_16 AC 939 ms
148,796 KB
testcase_17 AC 1,148 ms
162,548 KB
testcase_18 AC 1,176 ms
164,040 KB
testcase_19 AC 1,114 ms
160,636 KB
testcase_20 AC 612 ms
123,680 KB
testcase_21 AC 636 ms
127,964 KB
testcase_22 AC 327 ms
97,876 KB
testcase_23 AC 320 ms
93,804 KB
testcase_24 AC 583 ms
153,228 KB
testcase_25 AC 1,354 ms
167,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,M = map(int,input().split())
lsg = [[] for i in range(2*N)]
for i in range(M):
    a,b,c = map(int,input().split())
    a -= 1
    b -= 1
    lsg[a].append((b,c))
    lsg[b].append((a,c))
    lsg[a].append((b+N,0))
    lsg[b].append((a+N,0))
    lsg[a+N].append((b+N,c))
    lsg[b+N].append((a+N,c))

h = [(0,0)]
INF = float('INF')
cost = [INF]*(2*N)
cost[0] = 0
cost[N] = 0
used = [False]*(2*N)
while h:
    c,n = heapq.heappop(h)
    if used[n]:
        continue
    used[n] = True
    for nex,cos in lsg[n]:
        if used[nex]:
            continue
        if cost[nex] > c + cos:
            cost[nex] = c + cos
            heapq.heappush(h, (c+cos,nex))
for i in range(N):
    print(cost[i]+cost[i+N])
0