https://www.acmicpc.net/problem/1260
#전체 코드
#include <iostream>
#include <vector>
#include <algorithm>
#include <queue>
#include <cstring>
using namespace std;
vector<int> a[1001];
bool check[1001];
void dfs(int node) {
check[node] = true;
cout << node<<" ";
for (int i = 0; i < a[node].size(); i++) {
int next = a[node][i];
if (check[next] == false) {
dfs(next);
}
}
}
void bfs(int start) {
queue<int> q;
memset(check, false, sizeof(check));
check[start] = true;
q.push(start);
while (!q.empty()) {
int node = q.front();
q.pop();
cout << node<<" ";
for (int i = 0; i < a[node].size(); i++) {
int next = a[node][i];
if (check[next] == false) {
check[next] = true;
q.push(next);
}
}
}
}
int main() {
int n, m, start;
cin >> n >> m >> start;
for (int i = 0; i < m; i++) {
int u, v;
cin >> u >> v;
a[u].push_back(v);
a[v].push_back(u);
}
for (int i = 1; i <= n; i++) {
sort(a[i].begin(), a[i].end());
}
dfs(start);
puts("");
bfs(start);
puts("");
return 0;
}
'[백준] > C++' 카테고리의 다른 글
백준 2178번 미로 탐색[C++] (0) | 2023.09.06 |
---|---|
백준 9252번 LCS 2 [C++] (0) | 2023.09.03 |
백준 10989번 수 정렬하기 3 [C++] (0) | 2023.08.05 |
백준 11866번 요세푸스 문제 0 [C++] (0) | 2023.08.04 |
백준 2751번 수 정렬하기 2 [C++] (0) | 2023.08.04 |