結果

問題 No.807 umg tours
ユーザー 👑 rin204rin204
提出日時 2022-04-17 15:43:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,445 ms / 4,000 ms
コード長 714 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 151,180 KB
最終ジャッジ日時 2024-06-07 22:49:29
合計ジャッジ時間 23,582 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
61,440 KB
testcase_01 AC 52 ms
62,208 KB
testcase_02 AC 60 ms
65,280 KB
testcase_03 AC 61 ms
64,512 KB
testcase_04 AC 54 ms
61,056 KB
testcase_05 AC 50 ms
60,796 KB
testcase_06 AC 60 ms
65,152 KB
testcase_07 AC 59 ms
63,872 KB
testcase_08 AC 42 ms
52,480 KB
testcase_09 AC 42 ms
53,120 KB
testcase_10 AC 41 ms
53,248 KB
testcase_11 AC 1,010 ms
113,300 KB
testcase_12 AC 1,332 ms
118,652 KB
testcase_13 AC 1,659 ms
127,956 KB
testcase_14 AC 809 ms
102,004 KB
testcase_15 AC 551 ms
94,628 KB
testcase_16 AC 1,623 ms
130,144 KB
testcase_17 AC 2,305 ms
144,808 KB
testcase_18 AC 2,229 ms
144,720 KB
testcase_19 AC 2,013 ms
139,836 KB
testcase_20 AC 965 ms
114,228 KB
testcase_21 AC 1,054 ms
116,560 KB
testcase_22 AC 504 ms
91,920 KB
testcase_23 AC 415 ms
88,808 KB
testcase_24 AC 1,148 ms
145,420 KB
testcase_25 AC 2,445 ms
151,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n, m = map(int, input().split())
edges = [[] for _ in range(n)]
for _ in range(m):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    edges[a].append((b, c))
    edges[b].append((a, c))

inf = 1 << 60
dist = [[inf] * 2 for _ in range(n)]
dist[0][0] = 0
dist[0][1] = 0
hq = [(0, 0, 0)]
while hq:
    d, pos, t = heappop(hq)
    if d > dist[pos][t]:
        continue
    for npos, c in edges[pos]:
        if dist[npos][t] > d + c:
            dist[npos][t] = d + c
            heappush(hq, (d + c, npos, t))
        if t == 0:
            if dist[npos][1] > d :
                dist[npos][1] = d
                heappush(hq, (d, npos, 1))

for d1, d2 in dist:
    print(d1 + d2)
0