結果

問題 No.367 ナイトの転身
ユーザー sekiya9311sekiya9311
提出日時 2016-08-26 16:17:21
言語 Java
(openjdk 23)
結果
AC  
実行時間 437 ms / 2,000 ms
コード長 2,231 bytes
コンパイル時間 5,277 ms
コンパイル使用メモリ 78,476 KB
実行使用メモリ 49,096 KB
最終ジャッジ日時 2024-11-08 04:11:45
合計ジャッジ時間 11,390 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,116 KB
testcase_01 AC 136 ms
41,492 KB
testcase_02 AC 131 ms
41,564 KB
testcase_03 AC 136 ms
41,408 KB
testcase_04 AC 137 ms
41,448 KB
testcase_05 AC 135 ms
41,552 KB
testcase_06 AC 159 ms
41,792 KB
testcase_07 AC 137 ms
41,256 KB
testcase_08 AC 140 ms
41,568 KB
testcase_09 AC 137 ms
41,568 KB
testcase_10 AC 386 ms
48,232 KB
testcase_11 AC 437 ms
49,096 KB
testcase_12 AC 243 ms
44,320 KB
testcase_13 AC 236 ms
44,136 KB
testcase_14 AC 293 ms
46,876 KB
testcase_15 AC 158 ms
41,948 KB
testcase_16 AC 283 ms
46,932 KB
testcase_17 AC 203 ms
42,552 KB
testcase_18 AC 207 ms
43,336 KB
testcase_19 AC 209 ms
43,452 KB
testcase_20 AC 165 ms
41,704 KB
testcase_21 AC 214 ms
43,596 KB
testcase_22 AC 142 ms
41,536 KB
testcase_23 AC 144 ms
41,408 KB
testcase_24 AC 147 ms
41,524 KB
testcase_25 AC 145 ms
41,392 KB
testcase_26 AC 141 ms
41,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Scanner;

public class Yuki367 {
	static Scanner sc = new Scanner(System.in);
	static int[] nX = { -2, -2, -1, -1, 1, 1, 2, 2 };
	static int[] nY = { -1, 1, -2, 2, -2, 2, -1, 1 };
	static int[] bX = { -1, -1, 1, 1 };
	static int[] bY = { -1, 1, -1, 1 };

	public static void main(String[] args) {
		int H, W;
		H = sc.nextInt();
		W = sc.nextInt();
		sc.nextLine();
		boolean[][][] is = new boolean[2][H][W];
		for (int i = 0; i < 2; i++) {
			for (int j = 0; j < H; j++) {
				Arrays.fill(is[i][j], false);
			}
		}
		int[] start = new int[2];
		String[] S = new String[H];
		for (int i = 0; i < H; i++) {
			S[i] = sc.nextLine();
			for (int j = 0; j < W; j++) {
				if (S[i].charAt(j) == 'S') {
					start[0] = j;
					start[1] = i;
				}
			}
		}
		ArrayDeque<Now> q = new ArrayDeque<>();
		q.add(new Now(start[0], start[1], 0, true));
		while (!q.isEmpty()) {
			Now n = q.poll();
			boolean f = n.knightFlag;
			int nowStep = n.step + 1;
			if (f) {
				for (int i = 0; i < nX.length; i++) {
					int x = n.x + nX[i];
					int y = n.y + nY[i];
					if (x < 0 || x >= W)
						continue;
					if (y < 0 || y >= H)
						continue;
					if (is[1][y][x])
						continue;
					is[1][y][x] = true;
					if (S[y].charAt(x) == 'G') {
						System.out.println(nowStep);
						return;
					}
					if (S[y].charAt(x) == 'R') {
						q.add(new Now(x, y, nowStep, !f));
					} else {
						q.add(new Now(x, y, nowStep, f));
					}
				}
			} else {
				for (int i = 0; i < bX.length; i++) {
					int x = n.x + bX[i];
					int y = n.y + bY[i];
					if (x < 0 || x >= W)
						continue;
					if (y < 0 || y >= H)
						continue;
					if (is[0][y][x])
						continue;
					is[0][y][x] = true;
					if (S[y].charAt(x) == 'G') {
						System.out.println(nowStep);
						return;
					}
					if (S[y].charAt(x) == 'R') {
						q.add(new Now(x, y, nowStep, !f));
					} else {
						q.add(new Now(x, y, nowStep, f));
					}
				}
			}
		}
		System.out.println(-1);
	}

	public static class Now {
		int x;
		int y;
		int step;
		boolean knightFlag;

		Now(int x, int y, int step, boolean f) {
			this.x = x;
			this.y = y;
			this.step = step;
			this.knightFlag = f;
		}
	}
}
0