일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- DFS
- programmers
- 코드트리
- 모각코
- 백트래킹
- 실습
- BFS
- 마라마라빔
- 함밥
- django
- MyPlaylist
- 프로그래머스
- DP
- 파이썬
- 소프트웨어공학
- Planned
- 최소스패닝트리
- codetree
- 데이터베이스
- 종합설계
- 장고
- minimum spanning tree
- 알고리즘
- Bellman-Ford
- 백준
- B대면노래방
- 동적계획법
- 그리디알고리즘
- SQL
- Kruskal
Archives
- Today
- Total
Leta Learns
[Python] 백준 1922번 - 네트워크 연결 본문
문제 https://www.acmicpc.net/problem/1922
이번 주 MST 스터디에서 1197번은 프림으로, 1922번은 크루스칼로 풀 생각이었는데
보통 문제 풀 때는 거의 다 크루스칼로 푸니까 둘 다 크루스칼로 풀기로 스터디원이랑 협의했다.
그랬더니.. 1197번이랑 입력 부분 빼고 코드가 전부 똑같다.
이번 주는 크루스칼에 익숙해지는 주간..
import sys
input = sys.stdin.readline
def find(a):
if a == parent[a]:
return a
parent[a] = find(parent[a])
return parent[a]
def union(a, b):
a = find(a)
b = find(b)
if a > b:
parent[a] = b
else:
parent[b] = a
n = int(input())
m = int(input())
edge = []
for i in range(m):
a, b, c = map(int, input().split())
edge.append([c, a, b])
edge.sort(key=lambda x:x[0])
parent= [i for i in range(n+1)]
count = 0
MST = 0
for i in range(m):
weight = edge[i][0]
start = edge[i][1]
end = edge[i][2]
if find(start) != find(end):
union(start, end)
MST += weight
count += 1
if count == n-1:
break
print(MST)
'Coding > 백준' 카테고리의 다른 글
[Python] 백준 1238번 - 파티 (1) | 2021.08.02 |
---|---|
[Python] 백준 1949번 - 우수 마을 (0) | 2021.07.28 |
[Python] 백준 1197번 - 최소 스패닝 트리 (0) | 2021.07.27 |
[Python] 백준 18126번 - 너구리 구구 (0) | 2021.07.27 |
[Python] 백준 7576번 - 토마토 (0) | 2021.07.23 |
Comments