728x90
반응형
https://www.acmicpc.net/problem/1260
#include <bits/stdc++.h>
using namespace std;
int n, m, v;
vector<int> graph[1001];
bool visited_dfs[1001];
bool visited_bfs[1001];
void dfs(int x){
// 현재 노드를 방문처리
visited_dfs[x] = true;
cout << x << ' ';
// 현재 노드와 연결된 다른 노드를 재귀적으로 방문
for(int i=0; i<graph[x].size(); i++){
int y = graph[x][i];
if(!visited_dfs[y]) dfs(y);
}
}
void bfs(int start){
queue<int> q;
q.push(start);
// 현재 노드를 방문처리
visited_bfs[start] = true;
// 큐가 빌 때까지 반복
while(!q.empty()){
// 큐에서 하나의 원소를 뽑아 출력
int x = q.front();
q.pop();
cout << x << ' ';
// 해당 원소와 연결된, 아직 방문하지 않은 원소들을 큐에 삽입
for(int i=0; i<graph[x].size(); i++){
int y = graph[x][i];
if(!visited_bfs[y]){
q.push(y);
visited_bfs[y] = true;
}
}
}
}
int main(void) {
cin >> n >> m >> v;
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++){
sort(graph[i].begin(), graph[i].end());
}
dfs(v);
cout << endl;
bfs(v);
return 0;
}
728x90
반응형
'알고리즘' 카테고리의 다른 글
[백준/ DFS&BFS/ C++] 10451번 순열 사이클 (0) | 2022.12.29 |
---|---|
[백준/ DFS&BFS/ C++] 11724번 연결 요소의 개수 (0) | 2022.12.29 |
[이코테/ DFS&BFS/ C++] 미로탈출 (0) | 2022.12.28 |
[이코테/ DFS&BFS/ C++] 음료수 얼려 먹기 (0) | 2022.12.28 |
[이코테/DFS&BFS/C++] DFS & BFS 기초 설명 및 예제 (0) | 2022.12.28 |