Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
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
Tags
more
Archives
Today
Total
관리 메뉴

forDevLife

[백준] 1389 - 케빈 베이컨의 6단계 법칙 본문

알고리즘

[백준] 1389 - 케빈 베이컨의 6단계 법칙

JH_Lucid 2021. 6. 29. 11:59

걍 BFS인데 조금 헤맸다. 모든 노드에 대해서 BFS를 각각 실행하고, 각 노드간의 최소 거리를 계산한 후 더해주는 계산이 필요하다.

마지막으로, 가장 최소값인 노드(겹칠 경우, 가장 작은 숫자를 가진 노드번호)를 출력한다.

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;

public class Main {

    static int N;
    static boolean[] check;
    static int min = Integer.MAX_VALUE;
    static int result = 0;
    static ArrayList<ArrayList<Integer>> arr;

    private static void BFS(int i) {
        Queue<Integer> queue = new LinkedList<>();
        check = new boolean[N + 1];
        check[i] = true;
        queue.offer(i);
        int sum_value = 1;
        int sum = 0;
        while (!queue.isEmpty()) {
            int len = queue.size();
            for(int j=0; j<len; j++) {
                int tmp = queue.poll();
                for (int x : arr.get(tmp)) {
                    if (!check[x]) {
                        check[x] = true;
                        queue.offer(x);
                        sum += sum_value;
                    }
                }
            }
            sum_value ++;
        }
        //sum이 더 작을경우에만 갱신한다. 이렇게 하면, 최소 노드가 유지된다.
        if(min > sum) {
            result = i;
            min = sum;
        }
    }

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

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st = new StringTokenizer(br.readLine(), " ");

        N = Integer.parseInt(st.nextToken());
        int M = Integer.parseInt(st.nextToken());

        arr = new ArrayList<>();

        for (int i = 0; i <= N; i++) {
            arr.add(new ArrayList<Integer>());
        }

        for (int i = 0; i < M; i++) {
            st = new StringTokenizer(br.readLine(), " ");
            int a = Integer.parseInt(st.nextToken());
            int b = Integer.parseInt(st.nextToken());
            arr.get(a).add(b);
            arr.get(b).add(a);
        }

        for(int i=1; i<=N; i++) {
            BFS(i);
        }
        System.out.println(result);
    }
}

'알고리즘' 카테고리의 다른 글

[백준] 11286 - 절댓값 힙  (0) 2021.06.30
[백준] 1946 - 신입 사원  (0) 2021.06.29
[백준] 1003 - 피보나치 함수  (0) 2021.06.18
[백준] 1966 - 프린터 큐  (0) 2021.06.18
[백준] 1874 - 스택수열  (0) 2021.06.18
Comments