[백준] #1260 DFS와 BFS

짱수·2022년 12월 19일
0

알고리즘 문제풀이

목록 보기
5/26
post-custom-banner

🔒문제 설명

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

입력


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

출력


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

🔑해결 아이디어

DFS는 스택, BFS는 큐를 이용하여 구현할 수 있습니다.

💻소스코드

import java.util.*;  
  
public class BJ1260 {  
    public static void main(String[] args) {  
        Scanner sc = new Scanner(System.in);  
        int node =  sc.nextInt();  
        int line = sc.nextInt();  
        int startNode = sc.nextInt();  
        int[] visited = new int[node+1];  
        int curNode = startNode;  
        Stack<Integer> stack= new Stack<>();  
        Queue<Integer> queue = new LinkedList<>();  
  
        int[][] con = new int[node+1][];  
        for (int i = 1; i < node+1; i++) {  
            visited[i] = 0;  
            con[i] = new int[node+1];  
            for(int j = 1; j<node+1; j++)  
                con[i][j] = 0;  
        }  
        for (int i = 0; i < line; i++) {  
            int firstNode = sc.nextInt();  
            int secondNode = sc.nextInt();  
            con[firstNode][secondNode] = 1;  
            con[secondNode][firstNode] = 1;  
        }  
  
        /**  
         * DFS 구현  
         * 현재 노드는 stack에서 Pop 시켜서 가져온다.  
         * 현재 노드와 연결 된 모든 노드를 stack에 넣는다.  
         * 현재 노드를 출력한다.  
         */        stack.push(startNode);  
        while(stack.isEmpty() == false){  
            curNode = stack.pop();  
            for(int i = node; i>0; i--){  
                if(con[curNode][i] == 1 && visited[i] == 0){  
                    stack.push(i);  
                }  
            }  
            if(visited[curNode] == 0) {  
                visited[curNode] = 1;  
                System.out.print(curNode + " ");  
            }  
        }  
        System.out.println();  
        for(int i = 1; i <= node; i++)  
            visited[i] = 0;  
        /**  
         * BFS 구현  
         * Queue 사용  
         */  
        queue.add(startNode);  
        visited[startNode] = 1;  
        while (queue.isEmpty() == false) {  
            curNode = queue.poll();  
            for(int i = 1; i<= node; i++){  
                if(visited[i] == 0 && con[curNode][i] == 1){  
                    queue.add(i);  
                    visited[i] = 1;  
                }  
            }  
            System.out.print(curNode + " ");  
  
        }  
    }  
}
profile
Zangsu
post-custom-banner

0개의 댓글