結果

問題 No.807 umg tours
ユーザー chineristACchineristAC
提出日時 2020-10-25 23:27:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,047 ms / 4,000 ms
コード長 1,430 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 252,820 KB
最終ジャッジ日時 2024-07-21 21:09:48
合計ジャッジ時間 31,218 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
64,768 KB
testcase_01 AC 77 ms
65,536 KB
testcase_02 AC 77 ms
68,096 KB
testcase_03 AC 74 ms
67,328 KB
testcase_04 AC 69 ms
63,872 KB
testcase_05 AC 70 ms
64,128 KB
testcase_06 AC 77 ms
67,840 KB
testcase_07 AC 73 ms
66,048 KB
testcase_08 AC 51 ms
52,992 KB
testcase_09 AC 53 ms
54,272 KB
testcase_10 AC 59 ms
59,776 KB
testcase_11 AC 1,845 ms
207,232 KB
testcase_12 AC 1,659 ms
172,988 KB
testcase_13 AC 2,294 ms
214,588 KB
testcase_14 AC 1,170 ms
135,708 KB
testcase_15 AC 903 ms
124,160 KB
testcase_16 AC 2,140 ms
224,732 KB
testcase_17 AC 2,476 ms
248,508 KB
testcase_18 AC 2,974 ms
247,212 KB
testcase_19 AC 2,911 ms
243,456 KB
testcase_20 AC 1,400 ms
158,200 KB
testcase_21 AC 1,138 ms
161,152 KB
testcase_22 AC 666 ms
112,868 KB
testcase_23 AC 559 ms
105,020 KB
testcase_24 AC 1,043 ms
219,760 KB
testcase_25 AC 3,047 ms
252,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Dijkstra():
    class Edge():
        def __init__(self, _to, _cost):
            self.to = _to
            self.cost = _cost

    def __init__(self, V):
        self.G = [[] for i in range(V)]
        self._E = 0
        self._V = V

    @property
    def E(self):
        return self._E

    @property
    def V(self):
        return self._V

    def add(self, _from, _to, _cost):
        self.G[_from].append(self.Edge(_to, _cost))
        self._E += 1

    def shortest_path(self, s):
        import heapq
        que = []
        d = [10**15] * self.V
        d[s] = 0
        heapq.heappush(que, (0, s))

        while len(que) != 0:
            cost, v = heapq.heappop(que)
            if d[v] < cost: continue

            for i in range(len(self.G[v])):
                e = self.G[v][i]
                if d[e.to] > d[v] + e.cost:
                    d[e.to] = d[v] + e.cost
                    heapq.heappush(que, (d[e.to], e.to))
        return d

import sys

input = sys.stdin.readline

N,M = map(int,input().split())
tour = Dijkstra(2*N)
for i in range(M):
    a,b,c = map(int,input().split())
    tour.add(2*a-2,2*b-2,c)
    tour.add(2*a-1,2*b-1,c)
    tour.add(2*a-1,2*b-2,0)
    a,b = b,a
    tour.add(2*a-2,2*b-2,c)
    tour.add(2*a-1,2*b-1,c)
    tour.add(2*a-1,2*b-2,0)

short_go = tour.shortest_path(1)
short_back = tour.shortest_path(0)
for i in range(N):
    print(short_go[2*i]*(i>0)+short_back[2*i])
0