Java | DFS와 BFS [백준 1260]

나경호·2022년 4월 10일
0

알고리즘 Algorithm

목록 보기
86/106

DFS와 BFS

출처 | DFS와 BFS [백준 1260]

문제

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

입력

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

출력

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


풀이

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

public class Main{
    static int N, M;
    static boolean[] visited = new boolean[N];
    static ArrayList<ArrayList<Integer>> graph;
    static StringBuilder sb = new StringBuilder();

    

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

        BufferedReader scan = new BufferedReader(new InputStreamReader(System.in));
        BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));

        StringTokenizer st = new StringTokenizer(scan.readLine());
        
        N = Integer.parseInt(st.nextToken()); 
        M = Integer.parseInt(st.nextToken()); 
        int V = Integer.parseInt(st.nextToken()); 
        graph = new ArrayList<ArrayList<Integer>>(N + 1);
        

        //graph 구성
        for(int i = 0; i <= N; i++){
            graph.add(new ArrayList<>());
        }
        
        for (int i = 0; i < M; i++) {
            st = new StringTokenizer(scan.readLine());
            int a = Integer.parseInt(st.nextToken()); 
            int b = Integer.parseInt(st.nextToken()); 
            
            graph.get(a).add(b);
            graph.get(b).add(a);
        }
        

        for (int i = 1; i < N + 1; i++) {
            Collections.sort(graph.get(i));
        }
        
        visited = new boolean[N+1];
        dfs(V);
        sb.append("\n");
        
        visited = new boolean[N+1];
        bfs(V);
        
        bw.write(sb.toString());
        bw.flush();
        bw.close();
        
    }

    public static void dfs(int x) {
        visited[x] = true;
        sb.append(x + " ");
        for(int i = 0; i < graph.get(x).size(); i++) {
            int y = graph.get(x).get(i);
            if (!visited[y]) dfs(y);
        }
    }

    public static void bfs(int start) {
        Queue<Integer> q = new LinkedList<>();
        q.offer(start);
        visited[start] = true;
        sb.append(start + " ");
        while(!q.isEmpty()) {
            int x = q.poll();
            for (int i = 0; i < graph.get(x).size(); i++) {
                int y = graph.get(x).get(i);
                if (!visited[y]) {
                    q.offer(y);
                    visited[y] = true;
                    sb.append(y + " ");
                }
            }
            
        }
    }
    
}

출처

알고리즘 분류

profile
기억창고👩‍🌾

0개의 댓글