728x90
반응형
https://www.acmicpc.net/problem/24444
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
반응형
'알고리즘 > 그래프' 카테고리의 다른 글
[java 백준] 골드 5/ 14502번 연구소 (0) | 2022.06.28 |
---|---|
[java 프로그래머스] 카카오프렌즈 컬러링북 (0) | 2022.05.21 |
[java 백준] 실버 1/16918번 봄버맨 (0) | 2022.05.14 |
[java 백준] 골드 5/ 10026번 적록색약 (0) | 2022.05.11 |
[java 백준] 골드 5/ 1240번 노드 사이의 거리 (0) | 2022.05.06 |
댓글