Skip to content

Latest commit

 

History

History
97 lines (64 loc) · 2.69 KB

bj1260.md

File metadata and controls

97 lines (64 loc) · 2.69 KB

DFS와 BFS (1260)

난이도 : silver 2

문제

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

입력

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

출력

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

Idea

DFS는 스택 또는 재귀를 이용한다(나는 재귀로함) . BFS는 큐를 이용한다.

Code

import java.io.*;
import java.util.*;

public class Main {

    public static int [][] graph;
    public static int [] isVisited;

    public static void main(String[] args) throws IOException {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        String [] inputs = br.readLine().split(" ");
        int n = Integer.parseInt(inputs[0]);
        int m = Integer.parseInt(inputs[1]);
        int v = Integer.parseInt(inputs[2]);

        graph = new int [n+1][n+1];
        isVisited = new int [n+1];

        for(int i=0;i<m;i++){

            String [] connections = br.readLine().split(" ");
            int start =Integer.parseInt(connections[0]);
            int end = Integer.parseInt(connections[1]);

            graph[start][end] = 1;
            graph[end][start] = 1;
        }

        dfs(v);
        System.out.println();
        Arrays.fill(isVisited,0);
        bfs(v);

    }

    // 재귀
    public static void dfs(int v){
        isVisited[v] = 1;
        System.out.print(v + " ");

        for(int i=1;i<graph.length;i++){
            if(graph[v][i]==1&&isVisited[i]==0)
                dfs(i);
        }

    }

    // 큐
    public static void bfs(int v){

        Queue<Integer> queue = new LinkedList<>();
        queue.offer(v);
        isVisited[v] = 1;

        while(!queue.isEmpty()){

            int element = queue.poll();
            System.out.print(element + " ");

            for(int i=1;i<graph.length;i++){

                if(isVisited[i] == 0 && graph[element][i] ==1){
                    queue.offer(i);
                    isVisited[i] = 1;
                }

            }
        }
    }
}