Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 코딩테스트
- FastAPI
- 네이버AItech
- GIT
- leetcode
- Kubernetes
- GCP
- NLP
- rnn
- NaverAItech
- python
- PytorchLightning
- Kaggle
- datascience
- 프로그래머스
- pep8
- pytorch
- GitHub Action
- FDS
- DeepLearning
- autoencoder
- github
- 완전탐색
- Matplotlib
- 알고리즘
- docker
- 백준
- torchserve
- vscode
- wandb
Archives
- Today
- Total
Sangmun
백준 1647번 도시분할 계획 본문
https://www.acmicpc.net/problem/1647
기본적인 최소신장트리 문제와는 달리 마을을 두개로 분할해야하는 조건이 있는 문제이다.
최소신장트리 알고리즘으로 모든 마을을 연결하는 최소비용의 경로를 구해준 후 가장 비용이 높은 간선을 제거해주면 마을을 최소비용으로 2개로 분할하게 된다.
import sys
input = sys.stdin.readline
def find_parent(parent,x):
if parent[x] != x:
parent[x] = find_parent(parent,parent[x])
return parent[x]
def union_parent(parent, a,b):
a = find_parent(parent,a)
b = find_parent(parent,b)
if a < b:
parent[b] = a
else:
parent[a] = b
v, e = map(int, input().split())
parent = [0] * (v+1)
edges = []
result = []
for _ in range(e):
a, b, cost = map(int,input().split())
edges.append((cost,a,b))
for i in range(1, v+1):
parent[i] = i
edges.sort()
for edge in edges:
cost, a, b = edge
if find_parent(parent,a) != find_parent(parent,b):
union_parent(parent,a,b)
# cost를 기록
result.append(cost)
tmp = sum(result)
print(tmp - sorted(result)[-1])
최소신장트리 기본 알고리즘 출처 : https://www.youtube.com/watch?v=aOhhNFTIeFI&list=PLRx0vPvlEmdAghTr5mXQxGpHjWqSz0dgC&index=8
'알고리즘 > 백준' 카테고리의 다른 글
백준 1094번 막대기 (0) | 2022.12.07 |
---|---|
n-queen (0) | 2022.11.29 |
백준 11779번 최소비용 구하기 2 (0) | 2022.11.20 |
백준 11758번 CCW (0) | 2022.11.10 |
백준 14500번 테트로미노 (1) | 2022.10.08 |
Comments