728x90

https://www.acmicpc.net/problem/11724

 

11724번: 연결 요소의 개수

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

www.acmicpc.net

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


int main() {
	int numOfNode, numOfEdge;
	cin >> numOfNode >> numOfEdge;
	vector<int> graph[1001];
	for (int i = 0; i < numOfEdge; i++) {
		int from, to;
		cin >> from >> to;
		graph[from].push_back(to);
		graph[to].push_back(from);
	}
	vector<bool> visited(numOfNode + 1);
	int count = 0;
	for (int i = 1; i <= numOfNode; i++) {
		if (!visited[i]) {
			queue<int> q;
			q.push(i);
			while (!q.empty()) {
				int cur = q.front();
				q.pop();
				if (!visited[cur]) {
					visited[cur] = true;
					for (int j = 0; j < graph[cur].size(); j++) {
						if (!visited[graph[cur][j]])
							q.push(graph[cur][j]);
					}
				}
			}
			count++;
		}
	}
	cout << count;
	return 0;
}
728x90

+ Recent posts