結果

問題 No.807 umg tours
ユーザー stngstng
提出日時 2022-07-02 18:53:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,780 ms / 4,000 ms
コード長 1,805 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 174,916 KB
最終ジャッジ日時 2024-05-05 16:02:14
合計ジャッジ時間 26,563 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
62,592 KB
testcase_01 AC 64 ms
63,744 KB
testcase_02 AC 75 ms
68,096 KB
testcase_03 AC 65 ms
65,792 KB
testcase_04 AC 53 ms
62,336 KB
testcase_05 AC 53 ms
61,824 KB
testcase_06 AC 67 ms
67,584 KB
testcase_07 AC 60 ms
64,768 KB
testcase_08 AC 39 ms
52,736 KB
testcase_09 AC 41 ms
53,248 KB
testcase_10 AC 46 ms
53,632 KB
testcase_11 AC 1,355 ms
134,320 KB
testcase_12 AC 1,591 ms
132,928 KB
testcase_13 AC 1,994 ms
149,544 KB
testcase_14 AC 968 ms
109,964 KB
testcase_15 AC 834 ms
103,216 KB
testcase_16 AC 2,028 ms
153,960 KB
testcase_17 AC 2,713 ms
171,608 KB
testcase_18 AC 2,574 ms
170,880 KB
testcase_19 AC 2,395 ms
166,316 KB
testcase_20 AC 1,152 ms
125,908 KB
testcase_21 AC 1,224 ms
128,584 KB
testcase_22 AC 585 ms
98,872 KB
testcase_23 AC 479 ms
94,248 KB
testcase_24 AC 1,320 ms
166,556 KB
testcase_25 AC 2,780 ms
174,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    from heapq import heappop, heappush
    from sys import stdin

    n,m = map(int,input().split())

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

    INF = 10**14

    dp = [[INF]*2 for i in range(n)]
    dp[0][0] = 0
    dp[0][1] = 0

    q = [(0, 0, 0)]#c, idx, use
    while q:
        c, j, use = heappop(q)
        abc = abcs[j]
        if dp[j][use] != c:
            continue
        for k in range(len(abc)):
            j1,c1 = abc[k]
            ndis = c1 + c
            if use == 0:
                if dp[j1][0] > ndis:
                    dp[j1][0] = ndis
                    heappush(q, (ndis, j1, 0))
                if dp[j1][1] > c:
                    dp[j1][1] = c
                    heappush(q, (c, j1, 1))
            else:
                if dp[j1][1] > ndis:
                    dp[j1][1] = ndis
                    heappush(q, (ndis, j1, 1))

    def dijkstra(s, n): # (始点, ノード数)
        dist = [INF] * n
        hq = [(0, s)] # (distance, node)
        dist[s] = 0
        seen = [False] * n # ノードが確定済みかどうか
        while hq:
            tmp = heappop(hq) # ノードを pop する
            v = tmp[1]
            c = tmp[0]
            seen[v] = True
            if dist[v] < c:
                continue
            for to, cost in abcs[v]: # ノード v に隣接しているノードに対して
                if seen[to] == False and dist[v] + cost < dist[to]:
                    dist[to] = dist[v] + cost
                    heappush(hq, (dist[to], to))
        return dist

    fst = dijkstra(0,n)
    print(0)
    for i in range(1,n):
        print(fst[i]+dp[i][1])

main()
0