BOJ_11724 : 연결 요소의 개수

less than 1 minute read

문제

방향 없는 그래프가 주어졌을 때, 연결 요소 (Connected Component)의 개수를 구하는 프로그램을 작성하시오.

입력

첫째 줄에 정점의 개수 N과 간선의 개수 M이 주어진다. (1 ≤ N ≤ 1,000, 0 ≤ M ≤ N×(N-1)/2) 둘째 줄부터 M개의 줄에 간선의 양 끝점 u와 v가 주어진다. (1 ≤ u, v ≤ N, u ≠ v) 같은 간선은 한 번만 주어진다.

출력

첫째 줄에 연결 요소의 개수를 출력한다.

C++ 코드

#include <iostream>
#include <vector>
#include <queue>
using namespace std;

vector<int> a[1001];
bool check[1001];

void bfs(int node) {
	bool end = true;
	queue <int> q;
	check[node] = true;
	q.push(node);

	while (!q.empty()) {
		int next = q.front();
		q.pop();

		for (auto elements : a[next]) {
			if (!check[elements]) {
				q.push(elements);
				check[elements] = true;
			}
		}

	}
}




int main() {

	int u, v;
	cin >> u >> v;

	for (int i = 0; i < v; i++) {
		int x, y;
		cin >> x >> y;
		a[x].push_back(y);
		a[y].push_back(x);
	}
	int components = 0;
	for (int i = 1; i <= u; i++) {
		if (check[i] == false) {
			bfs(i);
			components += 1;
		}
	}
	cout << components;
	return 0;
}

Updated:

Leave a comment