[해결과정]
DFS, BFS 사용
[소스코드]
#include<iostream>
#include<algorithm>
#include<vector>
#include<queue>
#include<memory.h>
using namespace std;
int n, m, s;
int check[10005];
vector<int> v[10005];
queue<int> q;
void dfs(int node){
cout << node << " ";
for(int i=0; i<v[node].size(); i++){
if(check[v[node][i]]==0){
check[v[node][i]]=1;
dfs(v[node][i]);
}
}
}
void bfs(){
while(!q.empty()){
int node = q.front();
q.pop();
cout << node << " ";
for(int i=0; i<v[node].size(); i++){
if(check[v[node][i]]==0){
q.push(v[node][i]);
check[v[node][i]]=1;
}
}
}
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
cin >> n >> m >> s;
for(int i=0; i<m; i++){
int a,b;
cin >> a >> b;
v[a].push_back(b);
v[b].push_back(a);
}
for(int i=0; i<m; i++) sort(v[i].begin(), v[i].end());
check[s]=1;
dfs(s);
cout << "\n";
memset(check, 0, sizeof(check));
check[s]=1;
q.push(s);
bfs();
return 0;
}
[해결 과정 중 실수한 부분 / 잡담]
연결 점들을 오름차순으로 정렬해야했음...
[관련 문제 혹은 비슷한 문제]
없음
'[PS] 문제풀이 > 백준' 카테고리의 다른 글
[ 백준 9095 ] 1, 2, 3 더하기 (C++) (0) | 2021.10.22 |
---|---|
[ 백준 1929 ] 소수 구하기 (C++, 에라토스테네스의 체) (0) | 2021.10.22 |
[ 백준 10868 ] 최솟값 (C++, 세그먼트 트리) (1) | 2021.04.17 |
[ 백준 2357 ] 최솟값과 최댓값 (C++, 세그먼트 트리) (0) | 2021.04.17 |
[ 백준 11659 ] 구간 합 구하기 (C++, 세그먼트 트리) (0) | 2021.04.17 |
댓글