1일1알

백준 16562번 친구비 C++ 본문

알고리즘

백준 16562번 친구비 C++

영춘권의달인 2022. 8. 31. 23:59

출처 : https://www.acmicpc.net/problem/16562

 

#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