forked from ndb796/python-for-coding-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.java
64 lines (54 loc) · 2 KB
/
1.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
60
61
62
63
64
import java.util.*;
public class Main {
// 도시의 개수, 도로의 개수, 거리 정보, 출발 도시 번호
public static int n, m, k, x;
public static ArrayList<ArrayList<Integer>> graph = new ArrayList<ArrayList<Integer>>();
// 모든 도시에 대한 최단 거리 초기화
public static int[] d = new int[300001];
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
m = sc.nextInt();
k = sc.nextInt();
x = sc.nextInt();
// 그래피 및 최단 거리 테이블 초기화
for (int i = 0; i <= n; i++) {
graph.add(new ArrayList<Integer>());
d[i] = -1;
}
// 모든 도로 정보 입력 받기
for (int i = 0; i < m; i++) {
int a = sc.nextInt();
int b = sc.nextInt();
graph.get(a).add(b);
}
// 출발 도시까지의 거리는 0으로 설정
d[x] = 0;
// 너비 우선 탐색(BFS) 수행
Queue<Integer> q = new LinkedList<Integer>();
q.offer(x);
while (!q.isEmpty()) {
int now = q.poll();
// 현재 도시에서 이동할 수 있는 모든 도시를 확인
for (int i = 0; i < graph.get(now).size(); i++) {
int nextNode = graph.get(now).get(i);
// 아직 방문하지 않은 도시라면
if (d[nextNode] == -1) {
// 최단 거리 갱신
d[nextNode] = d[now] + 1;
q.offer(nextNode);
}
}
}
// 최단 거리가 K인 모든 도시의 번호를 오름차순으로 출력
boolean check = false;
for (int i = 1; i <= n; i++) {
if (d[i] == k) {
System.out.println(i);
check = true;
}
}
// 만약 최단 거리가 K인 도시가 없다면, -1 출력
if (!check) System.out.println(-1);
}
}