結果

問題 No.160 最短経路のうち辞書順最小
ユーザー 双六双六
提出日時 2020-07-23 17:23:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,569 ms / 5,000 ms
コード長 1,548 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 92,344 KB
最終ジャッジ日時 2024-06-23 17:50:17
合計ジャッジ時間 7,186 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,760 KB
testcase_01 AC 42 ms
55,996 KB
testcase_02 AC 42 ms
55,360 KB
testcase_03 AC 43 ms
54,668 KB
testcase_04 AC 82 ms
77,196 KB
testcase_05 AC 81 ms
77,364 KB
testcase_06 AC 86 ms
77,380 KB
testcase_07 AC 96 ms
76,984 KB
testcase_08 AC 89 ms
77,056 KB
testcase_09 AC 62 ms
70,828 KB
testcase_10 AC 94 ms
77,512 KB
testcase_11 AC 98 ms
77,160 KB
testcase_12 AC 98 ms
77,312 KB
testcase_13 AC 81 ms
76,684 KB
testcase_14 AC 101 ms
76,960 KB
testcase_15 AC 95 ms
77,204 KB
testcase_16 AC 64 ms
71,076 KB
testcase_17 AC 96 ms
77,096 KB
testcase_18 AC 85 ms
77,136 KB
testcase_19 AC 63 ms
70,624 KB
testcase_20 AC 63 ms
71,280 KB
testcase_21 AC 92 ms
77,164 KB
testcase_22 AC 96 ms
76,980 KB
testcase_23 AC 89 ms
77,288 KB
testcase_24 AC 71 ms
74,492 KB
testcase_25 AC 82 ms
76,704 KB
testcase_26 AC 84 ms
77,140 KB
testcase_27 AC 50 ms
63,212 KB
testcase_28 AC 3,569 ms
92,344 KB
testcase_29 AC 45 ms
56,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
from heapq import heappop, heappush
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.dic = defaultdict(lambda:[10 ** 10])
		self.dic[s].append(s)
		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
					self.dic[v] = self.dic[u] + [v]
					heappush(self.Q, (alt, v))
				elif self.dist[v] == alt:
					if self.dic[u] + [v] < self.dic[v]:
						self.prev[v] = u
						self.dic[v] = self.dic[u] + [v]
						heappush(self.Q, (alt, v))

	def s_p(self, goal):
		path = []
		node = goal
		while node is not None:
			path.append(node)
			node = self.prev[node]
		return path[::-1]

#処理内容
def main():
	N, M, s, g = getlist()
	G = Graph()
	for i in range(M):
		a, b, w = getlist()
		G.add_edge(a, b, w)
		G.add_edge(b, a, w)

	D = Dijkstra(G, s)
	ans = D.dic[g][1:]
	# print(D.dic[g])
	print(*ans)




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