최소 스패닝 트리는 결국 다익스트라에서 will_visit 을 우선순위큐에 넣는 방식으로 푼다고 생각하면 된다.
다시한번 풀어볼것
문제
도현이는 컴퓨터와 컴퓨터를 모두 연결하는 네트워크를 구축하려 한다. 하지만 아쉽게도 허브가 있지 않아 컴퓨터와 컴퓨터를 직접 연결하여야 한다. 그런데 모두가 자료를 공유하기 위해서는 모든 컴퓨터가 연결이 되어 있어야 한다. (a와 b가 연결이 되어 있다는 말은 a에서 b로의 경로가 존재한다는 것을 의미한다. a에서 b를 연결하는 선이 있고, b와 c를 연결하는 선이 있으면 a와 c는 연결이 되어 있다.)
그런데 이왕이면 컴퓨터를 연결하는 비용을 최소로 하여야 컴퓨터를 연결하는 비용 외에 다른 곳에 돈을 더 쓸 수 있을 것이다. 이제 각 컴퓨터를 연결하는데 필요한 비용이 주어졌을 때 모든 컴퓨터를 연결하는데 필요한 최소비용을 출력하라. 모든 컴퓨터를 연결할 수 없는 경우는 없다.
입력
첫째 줄에 컴퓨터의 수 N (1 ≤ N ≤ 1000)가 주어진다.
둘째 줄에는 연결할 수 있는 선의 수 M (1 ≤ M ≤ 100,000)가 주어진다.
셋째 줄부터 M+2번째 줄까지 총 M개의 줄에 각 컴퓨터를 연결하는데 드는 비용이 주어진다. 이 비용의 정보는 세 개의 정수로 주어지는데, 만약에 a b c 가 주어져 있다고 하면 a컴퓨터와 b컴퓨터를 연결하는데 비용이 c (1 ≤ c ≤ 10,000) 만큼 든다는 것을 의미한다. a와 b는 같을 수도 있다.
출력
모든 컴퓨터를 연결하는데 필요한 최소비용을 첫째 줄에 출력한다.
구현
import collections
import heapq
import sys
sys.setrecursionlimit(10 ** 4)
input = sys.stdin.readline
# print = sys.stdout.write
def iinput(): return int(input())
def lisinput(): return list(map(int, input().split()))
def dq(a):
return collections.deque(a)
def minput(): return map(int, input().split())
def liinput(): return list(map(int, list(input().replace("\n", ""))))
def addNode(a, b):
return [a[0] + b[0], a[1] + b[1]]
def returnValue(graph, node):
return graph[node[0]][node[1]]
def transpose(graph):
return list(map(list, zip(*graph)))
if __name__ == '__main__':
n = iinput()
m = iinput()
trees = collections.defaultdict(list)
dij = [float('inf') for k in range(n + 1)]
for i in range(m):
a, b, c = minput()
trees[a].append([b, c])
trees[b].append([a, c])
dij[0] = 0
will_visit = [[0, 1]]
visited = [False for k in range(n + 1)]
visited[0] = True
while will_visit:
travel = heapq.heappop(will_visit)
travel[1], travel[0] = travel[0], travel[1]
if visited[travel[0]] or dij[travel[0]] < travel[1]:
continue
else:
# print(travel)
visited[travel[0]] = True
dij[travel[0]] = travel[1]
mim = []
for k in trees[travel[0]]: # 비용, 간선
if not visited[k[0]] and dij[k[0]] > k[1]:
heapq.heappush(will_visit, [k[1], k[0]])
print(sum(dij))
# print(dij)
# print(trees)
# print(visited)
'알고리즘' 카테고리의 다른 글
백준 1197번 최소 스패닝 트리- 유니온 파인드 파이썬 골드4 (0) | 2021.03.02 |
---|---|
백준 16916번 부분 문자열 KMP: 아직 숙달 안된 개념 ㅣ 다시 (0) | 2021.03.02 |
백준 13397번 구간나누기2 - 골드4 파이썬 이분 탐색 (0) | 2021.02.27 |
아직 맞추지 못한 그리디 문제 1062번 가르침 (0) | 2021.02.26 |
백준 2493번 탑 골드 5 파이썬 (0) | 2021.02.24 |