結果

問題 No.807 umg tours
ユーザー FromBooskaFromBooska
提出日時 2023-08-31 10:52:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,277 ms / 4,000 ms
コード長 1,393 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 168,748 KB
最終ジャッジ日時 2024-06-11 01:20:52
合計ジャッジ時間 15,710 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
62,464 KB
testcase_01 AC 48 ms
62,464 KB
testcase_02 AC 57 ms
65,536 KB
testcase_03 AC 55 ms
63,872 KB
testcase_04 AC 52 ms
62,336 KB
testcase_05 AC 60 ms
62,976 KB
testcase_06 AC 61 ms
65,408 KB
testcase_07 AC 74 ms
64,896 KB
testcase_08 AC 37 ms
52,864 KB
testcase_09 AC 38 ms
53,504 KB
testcase_10 AC 39 ms
53,632 KB
testcase_11 AC 743 ms
137,600 KB
testcase_12 AC 684 ms
125,824 KB
testcase_13 AC 928 ms
146,168 KB
testcase_14 AC 487 ms
106,460 KB
testcase_15 AC 381 ms
99,456 KB
testcase_16 AC 1,000 ms
148,944 KB
testcase_17 AC 1,277 ms
163,024 KB
testcase_18 AC 1,272 ms
162,844 KB
testcase_19 AC 1,133 ms
160,664 KB
testcase_20 AC 596 ms
120,576 KB
testcase_21 AC 609 ms
121,984 KB
testcase_22 AC 316 ms
96,180 KB
testcase_23 AC 274 ms
91,680 KB
testcase_24 AC 566 ms
153,120 KB
testcase_25 AC 1,205 ms
168,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ダイクストラ
# ミラー頂点をN個作る、辺構造も同じ
# ミラーへは有向辺コスト0
# ダイクストラ1回で済ませられるか

N, M = map(int, input().split())
edges = [[] for i in range(N*2+1)]
for i in range(M):
    a, b, c = map(int, input().split())
    # 現世界内
    edges[a].append((b, c))
    edges[b].append((a, c))
    # ミラー世界内
    edges[a+N].append((b+N, c))
    edges[b+N].append((a+N, c))  
    # 現世界からミラー世界に有効辺コスト0
    edges[a].append((b+N, 0))
    edges[b].append((a+N, 0))

from heapq import heappush, heappop
INF = 10 ** 18
def dijkstra(s, n, connect): #(始点, ノード数)
    distance = [INF] * n
    que = [(0, s)] #(distance, node)
    distance[s] = 0
    confirmed = [False] * n # ノードが確定済みかどうか
    while que:
        w,v = heappop(que)
        if distance[v]<w:
            continue
        confirmed[v] = True
        for to, cost in connect[v]: # ノード v に隣接しているノードに対して
            if confirmed[to] == False and distance[v] + cost < distance[to]:
                distance[to] = distance[v] + cost
                heappush(que, (distance[to], to))
    return distance

distance = dijkstra(1,N*2+1, edges)

for i in range(1, N+1):
    if i == 1:
        ans = 0
    else:
        ans = distance[i]+distance[i+N]
    print(ans)


0