Home G16928. 뱀과 사다리 게임
Post
Cancel

G16928. 뱀과 사다리 게임

문제

image


제출 코드

image


  • 사용 알고리즘 : BFS


DFS로 풀었다가 무한루프에서 나오지 못하거나, stack overflow로 인해 풀지 못했다.

이 문제는 뱀이라는 변수때문에, DP로도 풀 수 없고, DFS는 끝까지 가야하기 때문에 중간에 도돌이표 되는 과정이 생길 수 있어 두가지 방법으로는 문제를 풀기 힘들다.

최단거리 문제일땐, 확실히 BFS로 푸는것이 깔끔한 것 같다.


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
package gold;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;

public class G16928_snackAndLadder {
	static int[] go = new int[101];
	static boolean[] visit = new boolean[101];

	static int bfs() {
		Queue<Integer> queue = new LinkedList<Integer>();
		queue.add(1);
		visit[1] = true;
		int cnt = 0;
		while(!queue.isEmpty()) {
			cnt++;
			int size = queue.size();
			for(int i=0; i<size; i++) {
				int now = queue.poll();
				for(int j=1; j<=6; j++) {
					if(now+j<100 && !visit[now+j]) {
						int n = now+j;
						while(go[n]!=0) {
							visit[n] = true;
							n = go[n];
						}
						visit[n] = true;
						queue.add(n);
					}
					else if(now+j==100) return cnt;
				}
			}
		}
		return -1;
	}

	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringTokenizer st = new StringTokenizer(br.readLine());
		int N = Integer.parseInt(st.nextToken());
		int M = Integer.parseInt(st.nextToken());

		for(int i=0; i<N+M; i++) {
			st = new StringTokenizer(br.readLine());
			int from = Integer.parseInt(st.nextToken());
			int to = Integer.parseInt(st.nextToken());
			go[from] = to;
		}

		System.out.println(bfs());
	}

}
This post is licensed under CC BY 4.0 by the author.