풀이
2차원 배열 탐색 문제로, 쩰리의 움직임이 오른쪽으로 가거나, 아래로 가는 방향 두개 밖에 없다. 그러나 그 움직이는 거리는 현재 밟고 있는 칸에 있는 숫자이므로, 움직이는 방향 * 값해줘서 쩰리를 움직여가면서 탐색하면 된다. 탐색 과정에서 -1을 만나면 종료시키고 flag변수를 true로 변경하여 쩰리가 승리할 수 있음을 알려준다.
소스 코드
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
import java.util.*;
public class 점프왕쩰리 {
static int[][] arr;
static boolean[][] visited;
static int[] dx = {1,0};
static int[] dy = {0,1};
static int n;
static boolean flag = false;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
arr = new int[n][n];
visited = new boolean[n][n];
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
arr[i][j] = sc.nextInt();
}
}
dfs(0,0);
if (flag)
System.out.println("HaruHaru");
else
System.out.println("Hing");
}
static void dfs(int x, int y) {
if (arr[x][y] == -1) {
flag = true;
return;
}
visited[x][y] = true;
for (int i = 0; i < 2; i++) {
int xx = x + dx[i]*arr[x][y];
int yy = y + dy[i]*arr[x][y];
if (xx < n && yy < n) {
if (!visited[xx][yy]) {
visited[xx][yy] = true;
dfs(xx, yy);
}
}
}
}
}
태클 감사합니다.
조언 환영입니다.