Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Kotlin in action 6장
- Python
- 코틀린
- 코틸린인액션
- kotlin in action 정리
- 기능개발 python
- 컨베이어 벨트 위의 로봇 Python
- 13460 구슬탈출 2
- 고급매핑
- 백준 20055 컨베이어 벨트 위의 로봇
- KotlinInAction
- 스프링 핵심 원리 이해
- Kotlin In Action
- 코틀린인액션
- Kotlin in action 3장
- 스프링 핵심 원리
- 20055 컨베이어 벨트 위의 로봇
- 7장 고급매핑
- Kotlin in action 10장
- Kotlin in action 5장
- 20055
- 백준
- 자바 ORM 표준 JPA 프로그래밍 7장
- 싱글톤 컨테이너
- 스프링 컨테이너와 스프링 빈
- 스프링 핵심 원리 - 기본편
- 객체 지향 설계와 스프링
- 백준 13460 Python
- Kotlin
- spring
Archives
- Today
- Total
기록하는 습관
[백준] 1260 DFS와 BFS 본문
문제
그래프를 DFS로 탐색한 결과와 BFS로 탐색한 결과를 출력하는 프로그램을 작성하시오. 단, 방문할 수 있는 정점이 여러 개인 경우에는 정점 번호가 작은 것을 먼저 방문하고, 더 이상 방문할 수 있는 점이 없는 경우 종료한다. 정점 번호는 1번부터 N번까지이다.
입력
첫째 줄에 정점의 개수 N(1 ≤ N ≤ 1,000), 간선의 개수 M(1 ≤ M ≤ 10,000), 탐색을 시작할 정점의 번호 V가 주어진다. 다음 M개의 줄에는 간선이 연결하는 두 정점의 번호가 주어진다. 어떤 두 정점 사이에 여러 개의 간선이 있을 수 있다. 입력으로 주어지는 간선은 양방향이다.
출력
첫째 줄에 DFS를 수행한 결과를, 그 다음 줄에는 BFS를 수행한 결과를 출력한다. V부터 방문된 점을 순서대로 출력하면 된다.
#include <iostream>
#include <vector>
#include <queue>
#include <stack>
#include <algorithm>
using namespace std;
// 인접리스트, 스택으로 구현
void dfs(int start, vector<vector<int>> graph, vector<bool> check) {
stack<int> s;
int current_node, next_node;
s.push(start);
check[start] = true;
printf("%d ", start);
while (!s.empty()) { // stack이 비어 있을 때까지 반복
current_node = s.top();
s.pop();
for (int i = 0; i < graph[current_node].size(); i++) {
next_node = graph[current_node][i];
if (!check[next_node]) { // 아직 방문하지 않은 노드라면..
printf("%d ", next_node);
check[next_node] = true; // 방문 완료 표시
s.push(current_node);
s.push(next_node);
break; // dfs를 진행하기 위함
}
}
}
}
void bfs(int start, vector<vector<int>> graph, vector<bool> check) {
queue<int> q;
int current_node, next_node;
q.push(start);
check[start] = true;
while (!q.empty()) { // queue가 비어 있을 때까지 반복
current_node = q.front();
q.pop();
printf("%d ", current_node);
for (int i = 0; i < graph[current_node].size(); i++) {
int tmp = graph[current_node][i];
if (!check[tmp]) { // 아직 방문하지 않은 노드라면..
check[tmp] = true; // 방문 완료 표시
q.push(tmp);
}
}
}
}
int main() {
int N, M, start;
int u, v;
vector<vector<int>> graph;
vector<bool> check;
cin >> N >> M >> start;
graph.resize(N + 1);
check.resize(N + 1);
for (int i = 0; i < M; i++) {
cin >> u >> v;
graph[u].push_back(v);
graph[v].push_back(u);
}
for (int i = 1; i <= N; i++) {
sort(graph[i].begin(), graph[i].end());
}
dfs(start, graph, check);
printf("\n");
bfs(start, graph, check);
return 0;
}
'알고리즘 > [문제풀이] 백준' 카테고리의 다른 글
[백준] 1697 숨바꼭질(BFS) (0) | 2020.01.21 |
---|---|
[백준] 2178 미로탐색 (0) | 2020.01.21 |
[백준] 10825 국영수 (0) | 2020.01.08 |
[백준] 1931 회의실 배정 (0) | 2020.01.07 |
[백준] 11399 ATM (0) | 2020.01.07 |
Comments