-
Notifications
You must be signed in to change notification settings - Fork 1
/
p16928.java
64 lines (58 loc) · 2.02 KB
/
p16928.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
/**
* BOJ 16928 뱀과 사다리 게임 : Silver 1
* BFS
*/
import java.io.*;
import java.util.*;
public class p16928 {
static int n, m;
static int[] arr, cnt;
static boolean[] visited;
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());
m = Integer.parseInt(st.nextToken());
arr = new int[110];
cnt = new int[110];
visited = new boolean[110];
for (int i = 0; i < n + m; i++) {
st = new StringTokenizer(br.readLine());
int u = Integer.parseInt(st.nextToken());
int v = Integer.parseInt(st.nextToken());
arr[u] = v;
}
// 매번 가장 최선의 선택.. 최단거리.. -> bfs ?!
bfs();
}
static void bfs() {
Queue<Integer> q = new LinkedList<>();
q.add(1); // 1번부터 시작
visited[1] = true; // 한번 밟은 곳은 더이상 방문할 필요가 없다.
while (!q.isEmpty()) {
int cur = q.poll();
if (cur == 100) {
System.out.println(cnt[cur]);
return;
}
// 모든 주사위 이동 횟수만큼의 가능성을 다 본다.
for (int i = 1; i <= 6; i++) {
int next = cur + i;
if (next > 100) break;
if (visited[next]) continue;
// 사다리나 뱀이 있는 자리라면
if (arr[next] != 0) {
if (!visited[arr[next]]) {
visited[arr[next]] = true;
cnt[arr[next]] = cnt[cur] + 1;
q.add(arr[next]);
}
} else {
visited[next] = true;
cnt[next] = cnt[cur] + 1;
q.add(next);
}
}
}
}
}