結果

問題 No.807 umg tours
ユーザー H20H20
提出日時 2021-05-02 14:50:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,041 ms / 4,000 ms
コード長 1,747 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 292,548 KB
最終ジャッジ日時 2024-07-20 23:44:23
合計ジャッジ時間 21,639 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
64,512 KB
testcase_01 AC 58 ms
66,648 KB
testcase_02 AC 68 ms
70,912 KB
testcase_03 AC 69 ms
71,808 KB
testcase_04 AC 53 ms
64,512 KB
testcase_05 AC 57 ms
66,432 KB
testcase_06 AC 71 ms
71,296 KB
testcase_07 AC 67 ms
70,528 KB
testcase_08 AC 42 ms
54,784 KB
testcase_09 AC 44 ms
55,552 KB
testcase_10 AC 44 ms
55,552 KB
testcase_11 AC 1,234 ms
227,464 KB
testcase_12 AC 1,118 ms
213,184 KB
testcase_13 AC 1,480 ms
251,984 KB
testcase_14 AC 744 ms
156,928 KB
testcase_15 AC 584 ms
142,888 KB
testcase_16 AC 1,685 ms
267,004 KB
testcase_17 AC 2,041 ms
291,784 KB
testcase_18 AC 2,016 ms
291,364 KB
testcase_19 AC 1,937 ms
290,780 KB
testcase_20 AC 988 ms
220,392 KB
testcase_21 AC 1,039 ms
219,904 KB
testcase_22 AC 496 ms
135,372 KB
testcase_23 AC 422 ms
122,228 KB
testcase_24 AC 975 ms
259,112 KB
testcase_25 AC 2,033 ms
292,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import heapq


class Dijkstra:
    def __init__(self):
        self.e = collections.defaultdict(list)

    def add(self, u, v, d, directed=False):
        """
        #0-indexedでなくてもよいことに注意
        #u = from, v = to, d = cost
        #directed = Trueなら、有向グラフである
        """
        if directed is False:
            self.e[u].append([v, d])
            self.e[v].append([u, d])
        else:
            self.e[u].append([v, d])

    def delete(self, u, v):
        self.e[u] = [_ for _ in self.e[u] if _[0] != v]
        self.e[v] = [_ for _ in self.e[v] if _[0] != u]

    def search(self, s):
        """
        :param s: 始点
        :return: 始点から各点までの最短経路
        """
        d = collections.defaultdict(lambda: float('inf'))
        d[s] = 0
        q = []
        heapq.heappush(q, (0, s))
        v = collections.defaultdict(bool)
        while len(q):
            k, u = heapq.heappop(q)
            if v[u]:
                continue
            v[u] = True

            for uv, ud in self.e[u]:
                if v[uv]:
                    continue
                vd = k + ud
                if d[uv] > vd:
                    d[uv] = vd
                    heapq.heappush(q, (vd, uv))

        return d
N, M = map(int, input().split())
ABC = [list(map(int, input().split())) for i in range(M)]
graph = Dijkstra()#チケット使用しない(使用後をマイナスで表現)
for a,b,c in ABC:
    graph.add(a, b, c)
    graph.add(a, -b, 0, True)
    graph.add(b, -a, 0, True)
    graph.add(-a, -b, c)
g = graph.search(1)
print(0)#1から1は0、↓の計算でやると別な値が入るため
for i in range(2,N+1):
    print(g[i]+g[-i])
0