-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path그래프_최단거리_BFS.java
59 lines (47 loc) · 1.39 KB
/
그래프_최단거리_BFS.java
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
package 인프런.Section07;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;
public class 그래프_최단거리_BFS {
static int n, m;
static ArrayList<ArrayList<Integer>> graph;
static int[] ch, dis;
public void BFS(int v) {
Queue<Integer> q = new LinkedList<>();
ch[v] = 1;
dis[v] = 0;
q.offer(v);
while(!q.isEmpty()) {
int cv = q.poll();
for(int nv : graph.get(cv)) {
if(ch[nv] == 0) { //방문 유무
ch[nv] = 1;
q.offer(nv);
dis[nv] = dis[cv] + 1;
}
}
}
}
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
그래프_최단거리_BFS t = new 그래프_최단거리_BFS();
n = scanner.nextInt();
m = scanner.nextInt();
graph = new ArrayList<>();
for(int i = 0; i <= n; i++ ){
graph.add(new ArrayList<>());
}
ch = new int[n+1];
dis = new int[n+1];
for(int i = 0; i < m; i++) {
int a = scanner.nextInt();
int b = scanner.nextInt();
graph.get(a).add(b);
}
t.BFS(1);
for(int i = 2; i <= n; i++) {
System.out.println(i + " : " + dis[i]);
}
}
}