* bfs 하는법
1.q메이커
2.push
3.while(size)
4.연결됨 & 미방문 -> push, 방문처리
#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
int n, m,v,t1,t2, a[1004][1004], visited[1004];
int dx[] = {0,1,-1,0};
int dy[] = {1,0,0,-1};
vector<int> ret;
void dfs(int here)
{
visited[here] = 1;
cout << here << " ";
for (int there = 0; there < 1004; ++there)
{
if (a[here][there] == 1 && visited[there] == 0)
dfs(there);
}
return;
}
void bfs(int start)
{
queue<int> q;
q.push(start);
//visit[start] = 1;
//cout << start << " ";
int here;
while (q.size())
{
here = q.front(); q.pop();
visited[here] = 1;
cout << here << " ";
for (int there = 0; there < 1004; ++there)
{
if (a[here][there] == 1 && visited[there] == 0)
{
q.push(there);
visited[there] = 1;
}
}
}
}
int main() {
ios_base::sync_with_stdio(0); cin.tie(NULL);
cin >> n>>m>>v;
for (int i = 0; i < m; ++i)
{
cin >> t1 >> t2;
a[t1][t2] = 1;
a[t2][t1] = 1;
}
dfs(v);
for (int i = 0; i < 1004; ++i) visited[i] = 0;
cout << "\n";
bfs(v);
return 0;
}
'Algorithm > boj' 카테고리의 다른 글
백준 7562 // 최단거리는 bfs, 핵심로직공부 (0) | 2023.05.02 |
---|---|
백준 11724 // 연결리스트 dfs, for문 1~n까지만 (0) | 2023.05.01 |
백준 2667 // int dfs사용법, scanf-cin혼용금지 (0) | 2023.05.01 |
백준 2583 영역구하기 //int dfs , ny>=mn체크 , 좌표를배열로바꾸기 (0) | 2023.04.09 |
백준 2468 안전영역 //bfs에 인자추가하기 (0) | 2023.04.05 |