728x90
반응형
https://www.acmicpc.net/problem/11724
DFS와 BFS 둘다 사용할 수 있을 것 같은데 나는 BFS가 아직 익숙하지 않아서 연습 겸 BFS로 풀었다
#include <bits/stdc++.h>
using namespace std;
int n, m;
vector<int> graph[1001];
bool visited[1001];
int result = 0;
void bfs(int start){
queue<int> q;
q.push(start);
visited[start] = true;
result++;
while(!q.empty()){
int x = q.front();
q.pop();
for(int i=0; i<graph[x].size(); i++){
int y = graph[x][i];
if(!visited[y]){
q.push(y);
visited[y] = true;
}
}
}
}
int main(void) {
cin >> n >> m;
for(int i=0; i<m; i++){
int x, y;
cin >> x >> y;
graph[x].push_back(y);
graph[y].push_back(x);
}
for(int i=1; i<=n; i++){
if(!visited[i]) bfs(i);
}
cout << result << endl;
return 0;
}
728x90
728x90
반응형
'알고리즘' 카테고리의 다른 글
[백준/DP/C++] 11055번 가장 큰 증가 부분 수열 (0) | 2022.12.29 |
---|---|
[백준/ DFS&BFS/ C++] 10451번 순열 사이클 (0) | 2022.12.29 |
[백준/ DFS&BFS/ C++] 1260번 DFS와 BFS (0) | 2022.12.28 |
[이코테/ DFS&BFS/ C++] 미로탈출 (0) | 2022.12.28 |
[이코테/ DFS&BFS/ C++] 음료수 얼려 먹기 (0) | 2022.12.28 |