結果

問題 No.807 umg tours
ユーザー 👑 rin204rin204
提出日時 2022-04-17 15:40:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 714 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 81,740 KB
実行使用メモリ 151,552 KB
最終ジャッジ日時 2024-06-07 22:48:37
合計ジャッジ時間 19,993 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
61,952 KB
testcase_01 AC 51 ms
62,044 KB
testcase_02 AC 59 ms
65,024 KB
testcase_03 AC 59 ms
64,384 KB
testcase_04 AC 49 ms
61,056 KB
testcase_05 AC 48 ms
60,800 KB
testcase_06 AC 60 ms
64,768 KB
testcase_07 AC 57 ms
63,872 KB
testcase_08 AC 39 ms
52,904 KB
testcase_09 AC 40 ms
53,504 KB
testcase_10 AC 42 ms
53,632 KB
testcase_11 AC 1,049 ms
113,692 KB
testcase_12 AC 1,381 ms
118,844 KB
testcase_13 AC 1,553 ms
127,832 KB
testcase_14 AC 778 ms
101,760 KB
testcase_15 AC 558 ms
95,012 KB
testcase_16 AC 1,542 ms
129,632 KB
testcase_17 AC 2,108 ms
145,192 KB
testcase_18 AC 2,125 ms
144,844 KB
testcase_19 AC 2,036 ms
139,960 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,108 ms
145,224 KB
testcase_25 AC 2,216 ms
151,552 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 << 30
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