結果

問題 No.807 umg tours
ユーザー irumo8202irumo8202
提出日時 2022-01-23 09:33:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,387 ms / 4,000 ms
コード長 902 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 174,260 KB
最終ジャッジ日時 2024-11-29 06:09:29
合計ジャッジ時間 17,241 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
61,568 KB
testcase_01 AC 54 ms
61,824 KB
testcase_02 AC 61 ms
65,152 KB
testcase_03 AC 63 ms
66,176 KB
testcase_04 AC 53 ms
60,928 KB
testcase_05 AC 56 ms
61,440 KB
testcase_06 AC 64 ms
64,896 KB
testcase_07 AC 59 ms
63,488 KB
testcase_08 AC 44 ms
52,864 KB
testcase_09 AC 44 ms
53,376 KB
testcase_10 AC 44 ms
53,248 KB
testcase_11 AC 778 ms
138,368 KB
testcase_12 AC 797 ms
129,652 KB
testcase_13 AC 1,066 ms
149,504 KB
testcase_14 AC 529 ms
108,024 KB
testcase_15 AC 408 ms
101,248 KB
testcase_16 AC 1,098 ms
153,048 KB
testcase_17 AC 1,376 ms
169,956 KB
testcase_18 AC 1,357 ms
169,340 KB
testcase_19 AC 1,316 ms
165,980 KB
testcase_20 AC 710 ms
124,204 KB
testcase_21 AC 745 ms
126,520 KB
testcase_22 AC 356 ms
97,384 KB
testcase_23 AC 311 ms
93,056 KB
testcase_24 AC 656 ms
157,368 KB
testcase_25 AC 1,387 ms
174,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

INF = 1 << 60


def dijkstra(s, edge):
    n = len(edge)
    dist = [INF] * n
    dist[s] = 0
    hq = []
    heappush(hq, (dist[s], s))

    while hq:
        dist_v, v = heappop(hq)
        if dist_v > dist[v]:
            continue
        for cost, nx in edge[v]:
            if dist[nx] > dist[v] + cost:
                dist[nx] = dist[v] + cost
                heappush(hq, (dist[nx], nx))
    return dist


N, M = map(int, input().split())
G = [[] for _ in range(2 * N)]

for _ in range(M):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    G[a].append((c, b))
    G[b].append((c, a))
    G[a].append((0, b + N))
    G[b].append((0, a + N))
    G[a + N].append((c, b + N))
    G[b + N].append((c, a + N))

for i in range(N):
    G[i].append((0, i + N))

dist = dijkstra(0, G)

for i in range(N):
    ans = dist[i] + dist[i + N]
    print(ans)
0