일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 알고리즘
- 모각코
- django
- 백준
- 함밥
- 동적계획법
- BFS
- 프로그래머스
- 소프트웨어공학
- minimum spanning tree
- 백트래킹
- 코드트리
- Planned
- codetree
- 실습
- Bellman-Ford
- DFS
- 데이터베이스
- Kruskal
- MyPlaylist
- SQL
- B대면노래방
- programmers
- 마라마라빔
- 그리디알고리즘
- DP
- 장고
- 종합설계
- 파이썬
- 최소스패닝트리
Archives
- Today
- Total
Leta Learns
[Python] 백준 6497번 - 전력난 본문
문제 https://www.acmicpc.net/problem/6497
스터디할 때는 크루스칼 어려웠는데 지금은 할 만하다.
문제 해결에 필요한 로직대로만 조금 수정하고 find, union 함수 사용하면 돼서 금방 익숙해진 것 같다.
MST 어려워서 겁먹었었는데 이제는 좀 더 마음 놓고 시도해도 될 것 같다.
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
while True:
m, n = map(int, input().split())
if m == 0 and n == 0:
break
edge = []
parent = [i for i in range(m+1)]
ans = 0
for i in range(n):
x, y, z = map(int, input().split())
edge.append((x, y, z)) #z: 가중치
edge.sort(key=lambda x:x[2])
for i in edge:
x, y, z = i
if find(x) != find(y):
union(x, y)
else:
ans += z
print(ans)
런타임에러 왜 났었더라... 기억 안 난다..
'Coding > 백준' 카테고리의 다른 글
[Python] 백준 1647번 - 도시 분할 계획 (0) | 2021.08.28 |
---|---|
[Python] 백준 9205번 - 맥주 마시면서 걸어가기 (0) | 2021.08.26 |
[Python] 백준 1012번 - 유기농 배추 (0) | 2021.08.19 |
[Python] 백준 2667번 - 단지번호붙이기 (0) | 2021.08.16 |
[Python] 백준 1865번 - 웜홀 (0) | 2021.08.05 |
Comments