結果

問題 No.807 umg tours
ユーザー 双六双六
提出日時 2020-08-20 21:07:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,908 ms / 4,000 ms
コード長 1,291 bytes
コンパイル時間 1,340 ms
コンパイル使用メモリ 86,972 KB
実行使用メモリ 233,384 KB
最終ジャッジ日時 2023-08-15 12:57:08
合計ジャッジ時間 21,806 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
76,992 KB
testcase_01 AC 104 ms
77,700 KB
testcase_02 AC 108 ms
77,444 KB
testcase_03 AC 106 ms
77,440 KB
testcase_04 AC 101 ms
77,024 KB
testcase_05 AC 102 ms
77,440 KB
testcase_06 AC 107 ms
77,668 KB
testcase_07 AC 107 ms
77,464 KB
testcase_08 AC 92 ms
71,976 KB
testcase_09 AC 91 ms
71,824 KB
testcase_10 AC 92 ms
71,500 KB
testcase_11 AC 1,093 ms
156,744 KB
testcase_12 AC 1,220 ms
169,008 KB
testcase_13 AC 1,374 ms
186,132 KB
testcase_14 AC 702 ms
127,960 KB
testcase_15 AC 563 ms
118,836 KB
testcase_16 AC 1,521 ms
192,124 KB
testcase_17 AC 1,814 ms
230,996 KB
testcase_18 AC 1,908 ms
233,384 KB
testcase_19 AC 1,722 ms
228,808 KB
testcase_20 AC 939 ms
185,052 KB
testcase_21 AC 974 ms
186,192 KB
testcase_22 AC 488 ms
121,076 KB
testcase_23 AC 423 ms
110,668 KB
testcase_24 AC 749 ms
201,972 KB
testcase_25 AC 1,773 ms
229,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
from heapq import heappop, heappush
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

class Graph(object):
	def __init__(self):
		self.graph = defaultdict(list)

	def __len__(self):
		return len(self.graph)

	def add_edge(self, a, b, w):
		self.graph[a].append((b, w))

class Dijkstra(object):
	def __init__(self, graph, s):
		self.g = graph.graph
		self.dist = defaultdict(lambda: INF); self.dist[s] = 0
		self.prev = defaultdict(lambda: None)
		self.Q = []
		heappush(self.Q, (self.dist[s], s))
		while self.Q:
			dist_u, u = heappop(self.Q)
			if self.dist[u] < dist_u:
				continue
			for v, w in self.g[u]:
				alt = dist_u + w
				if self.dist[v] > alt:
					self.dist[v] = alt
					self.prev[v] = u
					heappush(self.Q, (alt, v))

#処理内容
def main():
	N, M = getlist()
	G = Graph()
	for i in range(M):
		a, b, w = getlist()
		a -= 1; b -= 1
		G.add_edge(a, b, w)
		G.add_edge(b, a, w)
		G.add_edge(a, b + N, 0)
		G.add_edge(b, a + N, 0)
		G.add_edge(a + N, b + N, w)
		G.add_edge(b + N, a + N, w)

	D = Dijkstra(G, 0)
	print(0)
	for i in range(1, N):
		print(D.dist[i] + D.dist[i + N])

if __name__ == '__main__':
	main()
0