結果

問題 No.807 umg tours
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-11-13 20:58:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,580 ms / 4,000 ms
コード長 942 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 181,992 KB
最終ジャッジ日時 2024-05-03 00:09:09
合計ジャッジ時間 34,090 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,008 KB
testcase_01 AC 36 ms
10,880 KB
testcase_02 AC 39 ms
11,008 KB
testcase_03 AC 36 ms
11,008 KB
testcase_04 AC 33 ms
10,880 KB
testcase_05 AC 35 ms
10,880 KB
testcase_06 AC 37 ms
11,136 KB
testcase_07 AC 35 ms
11,008 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 2,255 ms
136,320 KB
testcase_12 AC 1,927 ms
105,856 KB
testcase_13 AC 2,693 ms
145,280 KB
testcase_14 AC 1,096 ms
69,888 KB
testcase_15 AC 788 ms
57,216 KB
testcase_16 AC 2,715 ms
152,876 KB
testcase_17 AC 3,519 ms
176,640 KB
testcase_18 AC 3,426 ms
174,848 KB
testcase_19 AC 3,484 ms
171,136 KB
testcase_20 AC 1,568 ms
98,176 KB
testcase_21 AC 1,678 ms
101,632 KB
testcase_22 AC 651 ms
50,304 KB
testcase_23 AC 502 ms
41,856 KB
testcase_24 AC 1,728 ms
136,800 KB
testcase_25 AC 3,580 ms
181,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop

def sol():
    N, M = map(int, input().split())
    edges = [[] for _ in range(2 * N)]

    edges[0].append((N, 0))

    for _ in range(M):
        fr, to, cost = map(int, input().split())
        fr -= 1
        to -= 1
        edges[fr].append((to, cost))
        edges[to].append((fr, cost))
        edges[fr + N].append((to + N, cost))
        edges[to + N].append((fr + N, cost))
        edges[fr].append((to + N, 0))
        edges[to].append((fr + N, 0))

    que = [(0, 0)]
    minDist = [float('inf')] * (2 * N)
    while que:
        dist, now = heappop(que)
        if minDist[now] < dist:
            continue
        minDist[now] = dist
        for to, cost in edges[now]:
            d = dist + cost
            if minDist[to] > d:
                heappush(que, (d, to))
                minDist[to] = d

    print(0)
    for i in range(1, N):
        print(minDist[i] + minDist[i + N])

sol()
0