본문 바로가기
알고리즘/그래프

[java 백준] 실버 2/ 24444번 알고리즘 수업

by Meaning_ 2022. 5. 17.
728x90
반응형

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

 

24444번: 알고리즘 수업 - 너비 우선 탐색 1

첫째 줄에 정점의 수 N (5 ≤ N ≤ 100,000), 간선의 수 M (1 ≤ M ≤ 200,000), 시작 정점 R (1 ≤ R ≤ N)이 주어진다. 다음 M개 줄에 간선 정보 u v가 주어지며 정점 u와 정점 v의 가중치 1인 양방

www.acmicpc.net

 

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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
 
 
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
 
public class Main {
    public static int n,m,r;
    public static List<Integer>[]arr;
    public static boolean []visited;
    public static int []order;
    public static int cnt=0;
 
    public static void BFS(int n){
        Queue<Integer>queue=new LinkedList<Integer>();
        queue.add(n);
        visited[n]=true;
 
 
 
 
        while(!queue.isEmpty()){
 
            int x=queue.poll();
            cnt++;
            order[x]=cnt;
 
            for(int node:arr[x]){
                if(!visited[node]){
 
                    queue.add(node);
                    visited[node]=true;
 
                }
            }
 
 
        }
 
 
    }
 
 
    public static void main(String[]args){
        Scanner sc=new Scanner(System.in);
        n=sc.nextInt();
        m=sc.nextInt();
        r=sc.nextInt();
        arr=new ArrayList[n+1];
        visited=new boolean[n+1];
        order=new int[n+1];
        Arrays.fill(order,0);
        for(int i=0;i<=n;i++){
            arr[i]=new ArrayList<Integer>();
        }
 
        for(int i=0;i<m;i++){
            int a=sc.nextInt();
            int b=sc.nextInt();
            arr[a].add(b);
            arr[b].add(a);
        }
        for(int i=1;i<=n;i++){
            Collections.sort(arr[i]);
 
        }
        BFS(r);
 
 
        for(int i=1;i<=n;i++){
            System.out.println(order[i]);
        }
 
 
    }
 
 
}
 
 
 
 
 
 
 
 
 
 
 
 
 
cs

 

문제는 전형적인 BFS문제인데, 순서를 정해주는거에서 null pointer에러가 떴다.

 

for(int i=0;i<=n;i++){
            arr[i]=new ArrayList<Integer>();
}
 
나는 i<n이라고 했는데 생각해보니 n번째 인덱스까지 접근을 해야하므로 i<=n이여야 했다. 공간을 만들어주지 않으니
당연히 널포인터 에러가 뜰 수 밖에...
728x90
반응형

댓글