結果

問題 No.807 umg tours
ユーザー anagohirameanagohirame
提出日時 2019-03-22 22:14:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,957 ms / 4,000 ms
コード長 1,431 bytes
コンパイル時間 1,039 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 236,680 KB
最終ジャッジ日時 2024-05-02 23:26:03
合計ジャッジ時間 21,922 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
60,800 KB
testcase_01 AC 61 ms
61,824 KB
testcase_02 AC 56 ms
63,104 KB
testcase_03 AC 55 ms
62,592 KB
testcase_04 AC 52 ms
60,928 KB
testcase_05 AC 50 ms
60,032 KB
testcase_06 AC 53 ms
62,080 KB
testcase_07 AC 54 ms
62,208 KB
testcase_08 AC 43 ms
52,864 KB
testcase_09 AC 44 ms
52,992 KB
testcase_10 AC 44 ms
53,248 KB
testcase_11 AC 1,233 ms
194,968 KB
testcase_12 AC 1,212 ms
163,916 KB
testcase_13 AC 1,496 ms
202,044 KB
testcase_14 AC 730 ms
129,468 KB
testcase_15 AC 553 ms
118,712 KB
testcase_16 AC 1,649 ms
211,200 KB
testcase_17 AC 1,927 ms
232,744 KB
testcase_18 AC 1,901 ms
231,228 KB
testcase_19 AC 1,781 ms
227,496 KB
testcase_20 AC 914 ms
154,532 KB
testcase_21 AC 991 ms
159,016 KB
testcase_22 AC 457 ms
111,296 KB
testcase_23 AC 409 ms
105,016 KB
testcase_24 AC 781 ms
204,548 KB
testcase_25 AC 1,957 ms
236,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, heapq
def input():
	return sys.stdin.readline()[:-1]

class DijkstraList():
	#隣接リスト版
	#同一頂点の複数回探索を防ぐため訪問した頂点数を変数cntで持つ
	def __init__(self, adj, start):
		self.list = adj
		self.start = start
		self.size = len(adj)

	def solve(self):
		self.dist = [float("inf") for _ in range(self.size)]
		self.dist[self.start] = 0
		self.prev = [-1 for _ in range(self.size)]
		self.q = []
		self.cnt = 0

		heapq.heappush(self.q, (0, self.start))

		while self.q and self.cnt < self.size:
			u_dist, u = heapq.heappop(self.q)
			if self.dist[u] < u_dist:
				continue
			for v, w in self.list[u]:
				if self.dist[v] > u_dist + w:
					self.dist[v] = u_dist + w
					self.prev[v] = u
					heapq.heappush(self.q, (self.dist[v], v))
			self.cnt += 1
		return

	def distance(self, goal):
		return self.dist[goal]

	def path(self, goal):
		self.path = [goal]
		while self.path[-1] != self.start:
			self.path.append(self.prev[self.path[-1]])
		return self.path[::-1]

n, m = map(int, input().split())
adj = [[] for _ in range(2*n)]
for _ in range(m):
	a, b, c = map(int, input().split())
	adj[a-1].append([b-1, c])
	adj[b-1].append([a-1, c])
	adj[a-1].append([b-1+n, 0])
	adj[b-1].append([a-1+n, 0])
	adj[a-1+n].append([b-1+n, c])
	adj[b-1+n].append([a-1+n, c])

d = DijkstraList(adj, 0)
d.solve()

print(0)
for i in range(1, n):
	print(d.distance(i) + d.distance(i+n))
0