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
- 정렬
- 스택
- 재귀
- 유니티
- Unreal Engine 5
- 수학
- 백트래킹
- ue5
- 다이나믹 프로그래밍
- DFS
- 자료구조
- 트리
- 백준
- BFS
- 유니온 파인드
- 누적 합
- 시뮬레이션
- 그리디 알고리즘
- 투 포인터
- XR Interaction Toolkit
- 다익스트라
- 구현
- 우선순위 큐
- 브루트포스
- 그래프
- 알고리즘
- c++
- VR
- Team Fortress 2
- 문자열
Archives
- Today
- Total
1일1알
백준 16562번 친구비 C++ 본문
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int n, m, k;
vector<int> parent;
vector<int> height;
struct Info {
int index;
int cost;
bool operator<(const Info& other) const {
return cost < other.cost;
}
bool operator>(const Info& other) const {
return cost > other.cost;
}
};
vector<Info> infos;
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()
{
cin >> n >> m >> k;
parent = vector<int>(n + 1);
height = vector<int>(n + 1, 1);
for (int i = 1; i <= n; i++) {
parent[i] = i;
}
for (int i = 1; i <= n; i++) {
int cost;
cin >> cost;
infos.push_back({ i,cost });
}
sort(infos.begin(), infos.end());
int ans = 0;
for (int i = 0; i < m; i++) {
int v, w;
cin >> v >> w;
Merge(v, w);
}
vector<int> found(n + 1, false);
for (auto a : infos) {
int parent = GetParent(a.index);
if (found[parent]) continue;
found[parent] = true;
ans += a.cost;
}
if (ans <= k) {
cout << ans;
}
else {
cout << "Oh no";
}
}
'알고리즘' 카테고리의 다른 글
백준 1520번 내리막 길 C++ (0) | 2022.09.02 |
---|---|
백준 16197번 두 동전 C++ (0) | 2022.09.01 |
백준 6497번 전력난 C++ (0) | 2022.08.30 |
백준 10282번 해킹 C++ (0) | 2022.08.29 |
백준 17836번 공주님을 구해라! C++ (0) | 2022.08.28 |