• 문제 링크
16948번: 데스 나이트
게임을 좋아하는 큐브러버는 체스에서 사용할 새로운 말 "데스 나이트"를 만들었다. 데스 나이트가 있는 곳이 (r, c)라면, (r-2, c-1), (r-2, c+1), (r, c-2), (r, c+2), (r+2, c-1), (r+2, c+1)로 이동할 수 있다. 크
www.acmicpc.net
• 풀이 과정
• 풀이 코드
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;
public class Main {
static int n, r1, c1, r2, c2, res;
static boolean[][] visit;
static int[] dy = {-2, -2, 0, 0, 2, 2};
static int[] dx = {-1, 1, -2, 2, -1, 1};
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
StringTokenizer st;
n = Integer.parseInt(br.readLine());
visit = new boolean[n][n];
st = new StringTokenizer(br.readLine());
r1 = Integer.parseInt(st.nextToken());
c1 = Integer.parseInt(st.nextToken());
r2 = Integer.parseInt(st.nextToken());
c2 = Integer.parseInt(st.nextToken());
bfs();
bw.write(String.valueOf(res));
bw.flush();
}
private static void bfs() {
Queue<Node> q = new LinkedList<>();
q.offer(new Node(r1, c1, 0));
visit[r1][c1] = true;
while (!q.isEmpty()) {
Node now = q.poll();
if (now.y == r2 && now.x == c2) {
res = now.cnt;
return;
}
for (int i = 0; i < 6; i++) {
int ny = now.y + dy[i];
int nx = now.x + dx[i];
if (ny < 0 || ny >= n || nx < 0 || nx >= n || visit[ny][nx])
continue;
q.offer(new Node(ny, nx, now.cnt + 1));
visit[ny][nx] = true;
}
}
res = -1;
}
private static class Node {
int y, x, cnt;
public Node(int y, int x, int cnt) {
this.y = y;
this.x = x;
this.cnt = cnt;
}
}
}
'Problem Solving > Baekjoon' 카테고리의 다른 글
[백준] 2206 벽 부수고 이동하기 - Graph Theory / Java (0) | 2022.10.09 |
---|---|
[백준] 12886 돌 그룹 - Graph Theory / Java (0) | 2022.10.08 |
[백준] 16928 뱀과 사다리 게임 - Graph Theory / Java (0) | 2022.10.06 |
[백준] 16929 Two Dots - Graph Theory / Java (0) | 2022.10.05 |
[백준] 14226 이모티콘 - Graph Theory / Java (0) | 2022.10.04 |
댓글