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
- XR Interaction Toolkit
- 정렬
- 구현
- 수학
- DFS
- BFS
- 그래프
- Team Fortress 2
- 유니온 파인드
- 스택
- 백트래킹
- ue5
- 그리디 알고리즘
- 트리
- 누적 합
- 자료구조
- VR
- 우선순위 큐
- 재귀
- 알고리즘
- 투 포인터
- 다이나믹 프로그래밍
- 유니티
- 시뮬레이션
- 백준
- 다익스트라
- Unreal Engine 5
- 브루트포스
- 문자열
- c++
Archives
- Today
- Total
1일1알
백준 1647번 도시 분할 계획 C++ 본문
유니온 파인드 자료구조를 이용해서 최소 스패닝 트리를 구하고 최소 스패닝 트리로 연결된 길 중에서 유지비의 값이 가장 높은 길을 빼면 된다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int n, m;
struct LoadInfo {
int start;
int end;
int cost;
bool operator<(const LoadInfo& other) {
return cost < other.cost;
}
};
vector<int> parent;
vector<int> height;
vector<LoadInfo> loads;
int GetParent(int n) {
if (n == parent[n])
return n;
return parent[n] = GetParent(parent[n]);
}
void Merge(int u, int v) {
u = GetParent(u);
v = GetParent(v);
if (u == v)
return;
if (height[u] > height[v])
::swap(u, v);
parent[u] = v;
if (height[u] == height[v])
height[v]++;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
parent = vector<int>(n + 1);
height = vector<int>(n + 1, 1);
for (int i = 1; i <= n; i++)
parent[i] = i;
for (int i = 0; i < m; i++) {
int start, end, cost;
cin >> start >> end >> cost;
loads.push_back({ start,end,cost });
}
sort(loads.begin(), loads.end());
int sum = 0;
int maxCost = 0;
for (int i = 0; i < m; i++) {
int start = loads[i].start;
int end = loads[i].end;
int cost = loads[i].cost;
if (GetParent(start) == GetParent(end))
continue;
Merge(start, end);
sum += cost;
maxCost = max(maxCost, cost);
}
int ans = sum - maxCost;
cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 20040번 사이클 게임 C++ (0) | 2022.07.12 |
---|---|
백준 4386번 별자리 만들기 C++ (0) | 2022.07.10 |
백준 7579번 앱 C++ (0) | 2022.07.08 |
백준 10942번 팰린드롬? C++ (0) | 2022.07.07 |
백준 1806번 부분합 C++ (0) | 2022.07.03 |