문제 >
그래프를 DFS로 탐색한 결과와 BFS로 탐색한 결과를 출력하는 프로그램을 작성하시오. 단, 방문할 수 있는 정점이 여러 개인 경우에는 정점 번호가 작은 것을 먼저 방문하고, 더 이상 방문할 수 있는 점이 없는 경우 종료한다. 정점 번호는 1번부터 N번까지이다.
입력 >
첫째 줄에 정점의 개수 N(1 ≤ N ≤ 1,000), 간선의 개수 M(1 ≤ M ≤ 10,000), 탐색을 시작할 정점의 번호 V가 주어진다. 다음 M개의 줄에는 간선이 연결하는 두 정점의 번호가 주어진다. 어떤 두 정점 사이에 여러 개의 간선이 있을 수 있다. 입력으로 주어지는 간선은 양방향이다.
출력 >
첫째 줄에 DFS를 수행한 결과를, 그 다음 줄에는 BFS를 수행한 결과를 출력한다. V부터 방문된 점을 순서대로 출력하면 된다.
해결방법 >
깊이 우선 탐색(DFS)와 너비 우선 탐색(BFS) 알고리즘으로 해결
[JAVA]
package baekjoon;
import java.util.*;
public class BOJ_1260 {
static int[][] map;
static boolean[] visit;
static int n;
public static void dfs(int x) {
visit[x] = true;
System.out.print((x+1) + " ");
for(int i = 0; i < n; i++) {
if(map[x][i] == 1 && visit[i] == false) {
dfs(i);
}
}
}
public static void bfs(int x) {
Queue <Integer> q = new LinkedList <>();
q.add(x);
visit[x] = true;
while(!q.isEmpty()) {
x = q.poll();
System.out.print((x + 1) + " ");
for(int i = 0; i < n; i++) {
if(map[x][i] == 1 && visit[i] == false) {
q.add(i);
visit[i] = true;
}
}
}
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
int m = sc.nextInt();
int start = sc.nextInt();
map = new int[n][n];
visit = new boolean[n];
for(int i = 0; i < m; i++) {
int x = sc.nextInt();
int y = sc.nextInt();
map[x - 1][y - 1] = 1;
map[y - 1][x - 1] = 1;
}
dfs(start - 1);
System.out.println();
for(int i = 0; i < n; i++) {
visit[i] = false;
}
bfs(start - 1);
}
}
문제링크 >
https://www.acmicpc.net/problem/1260
'Problem Solving > BOJ' 카테고리의 다른 글
[백준] 7576번 - 토마토 (0) | 2020.01.14 |
---|---|
[백준] 2178번 - 미로 탐색 (0) | 2020.01.14 |
[백준] 1987번 - 알파벳 (0) | 2020.01.14 |
[백준] 10610번 - 30 (0) | 2020.01.13 |
[백준] 2583번 - 영역 구하기 (0) | 2020.01.13 |
댓글