728x90
https://www.acmicpc.net/problem/11724
#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
'알고리즘 문제' 카테고리의 다른 글
[백준] 11006번 남욱이의 닭장 (0) | 2020.02.18 |
---|---|
[백준] 3187번 양치기 꿍 (0) | 2020.02.18 |
[백준] 17779번 게리맨더링 2 (0) | 2020.02.18 |
[백준] 17471번 게리맨더링 (0) | 2020.02.18 |
[백준] 14499번 주사위 굴리기 (0) | 2020.02.18 |