Algorithm/문제 풀이 / / 2020. 2. 9. 17:39

[BAEKJOON_1260 - JAVA] DFS와BFS

반응형

문제

그래프를 DFS로 탐색한 결과와 BFS로 탐색한 결과를 출력하는 프로그램을 작성하시오. 단, 방문할 수 있는 정점이 여러 개인 경우에는 정점 번호가 작은 것을 먼저 방문하고, 더 이상 방문할 수 있는 점이 없는 경우 종료한다. 정점 번호는 1번부터 N번까지이다.

입력

첫째 줄에 정점의 개수 N(1 ≤ N ≤ 1,000), 간선의 개수 M(1 ≤ M ≤ 10,000), 탐색을 시작할 정점의 번호 V가 주어진다. 다음 M개의 줄에는 간선이 연결하는 두 정점의 번호가 주어진다. 어떤 두 정점 사이에 여러 개의 간선이 있을 수 있다. 입력으로 주어지는 간선은 양방향이다.

출력

첫째 줄에 DFS를 수행한 결과를, 그 다음 줄에는 BFS를 수행한 결과를 출력한다. V부터 방문된 점을 순서대로 출력하면 된다.

 

 

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import java.util.Scanner;
 
public class Main {
    public static int[][] map;
    public static int edge;
    public static int vertices;
    public static int V;
    public static boolean[] visited;
 
    public static void dfs(int start) {
 
        System.out.print(start + " "); // 출력문
        visited[start] = true// 시작점 방문
 
        for (int i = 1; i < map.length; i++) {
            if (map[start][i] == 1 && !visited[i]) { // 표시와 방문여부
                visited[i] = true// 방문 표시
                dfs(i); // 재귀호출
            }
        }
 
    }
 
    public static void bfs(int start) {
 
        Queue<Integer> queue = new LinkedList<>();
        visited[start] = true// 시작점 방문
        queue.offer(start); // 시작점 offer
 
        while (!queue.isEmpty()) { // queue가 빌때까지
            int x = queue.poll();
            System.out.print(x + " ");
 
            for (int i = 1; i < map.length; i++) {
                if (map[x][i] == 1 && !visited[i]) { // 표시와 방문여부
                    visited[i] = true// 방문 표시
                    queue.offer(i); // queue에 offer
                }
            }
        }
    }
 
    public static void main(String[] args) {
 
        Scanner sc = new Scanner(System.in);
        edge = sc.nextInt(); // 정점
        vertices = sc.nextInt(); // 간선
        V = sc.nextInt(); // 탐색시작 정점
        map = new int[edge + 1][edge + 1];
 
        for (int i = 1; i <= vertices; i++) {
            int row = sc.nextInt();
            int col = sc.nextInt();
            map[row][col] = 1;
            map[col][row] = 1;
        }
 
        visited = new boolean[edge + 1];
        dfs(V);
        visited = new boolean[edge + 1];
        System.out.println();
        bfs(V);
    }
 
}
 
 

https://www.acmicpc.net/problem/1260

 

1260번: DFS와 BFS

첫째 줄에 정점의 개수 N(1 ≤ N ≤ 1,000), 간선의 개수 M(1 ≤ M ≤ 10,000), 탐색을 시작할 정점의 번호 V가 주어진다. 다음 M개의 줄에는 간선이 연결하는 두 정점의 번호가 주어진다. 어떤 두 정점 사이에 여러 개의 간선이 있을 수 있다. 입력으로 주어지는 간선은 양방향이다.

www.acmicpc.net

 

반응형
  • 네이버 블로그 공유
  • 네이버 밴드 공유
  • 페이스북 공유
  • 카카오스토리 공유