일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 백트래킹
- 실습
- programmers
- DFS
- 데이터베이스
- 장고
- MyPlaylist
- 동적계획법
- 종합설계
- SQL
- minimum spanning tree
- 프로그래머스
- 알고리즘
- 파이썬
- DP
- Kruskal
- django
- Planned
- 함밥
- 마라마라빔
- 백준
- 최소스패닝트리
- B대면노래방
- 그리디알고리즘
- codetree
- BFS
- 소프트웨어공학
- Bellman-Ford
- 모각코
- 코드트리
Archives
- Today
- Total
Leta Learns
[Python] 백준 1647번 - 도시 분할 계획 본문
문제 https://www.acmicpc.net/problem/1647
크루스칼 사랑해.
이제 크루스칼은 문제 이해만 잘 하면 나름 수월하게 풀 수 있다.
근데 그 문제 이해가 오래 걸린다..
이걸 어떻게 크루스칼로 풀어야 하는지, 이게 왜 크루스칼인지.. 뭐 풀다보면 익숙해지겠지..?
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, m = map(int, input().split())
edge = []
parent = [i for i in range(n+1)]
ans = 0
for i in range(m):
a, b, c = map(int, input().split())
edge.append((a, b, c)) #c: 가중치
edge.sort(key=lambda x:x[2])
for i in range(1, n+1):
parent[i] = i
for i in edge:
a, b, c = i
if find(a) != find(b):
union(a, b)
ans += c
last = c
print(ans - last)
'Coding > 백준' 카테고리의 다른 글
[Python] 백준 1747번 - 소수&팰린드롬 (0) | 2022.01.17 |
---|---|
[Python] 백준 2621번 - 카드게임 (0) | 2022.01.16 |
[Python] 백준 9205번 - 맥주 마시면서 걸어가기 (0) | 2021.08.26 |
[Python] 백준 6497번 - 전력난 (0) | 2021.08.20 |
[Python] 백준 1012번 - 유기농 배추 (0) | 2021.08.19 |
Comments