結果

問題 No.424 立体迷路
ユーザー tomeruntomerun
提出日時 2016-09-22 22:37:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,504 bytes
コンパイル時間 2,451 ms
コンパイル使用メモリ 79,584 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-04-28 18:54:42
合計ジャッジ時間 7,022 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,440 KB
testcase_01 AC 136 ms
41,184 KB
testcase_02 AC 135 ms
41,316 KB
testcase_03 AC 136 ms
41,180 KB
testcase_04 AC 135 ms
41,076 KB
testcase_05 AC 133 ms
41,388 KB
testcase_06 AC 136 ms
41,236 KB
testcase_07 AC 136 ms
41,136 KB
testcase_08 AC 135 ms
41,504 KB
testcase_09 AC 135 ms
41,196 KB
testcase_10 AC 135 ms
41,336 KB
testcase_11 AC 137 ms
41,092 KB
testcase_12 AC 134 ms
41,076 KB
testcase_13 AC 137 ms
41,556 KB
testcase_14 AC 134 ms
41,572 KB
testcase_15 AC 136 ms
41,328 KB
testcase_16 AC 136 ms
41,152 KB
testcase_17 AC 144 ms
41,128 KB
testcase_18 AC 146 ms
41,316 KB
testcase_19 AC 144 ms
41,420 KB
testcase_20 AC 148 ms
41,556 KB
testcase_21 AC 139 ms
41,472 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 148 ms
41,648 KB
testcase_25 AC 147 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class Main {
	static Scanner sc = new Scanner(System.in);
	static int[] DX = { 1, 0, -1, 0 };
	static int[] DY = { 0, 1, 0, -1 };

	public static void main(String[] args) {
		int H = sc.nextInt();
		int W = sc.nextInt();
		int SX = sc.nextInt() - 1;
		int SY = sc.nextInt() - 1;
		int GX = sc.nextInt() - 1;
		int GY = sc.nextInt() - 1;
		int[][] B = new int[H][W];
		for (int i = 0; i < H; ++i) {
			char[] row = sc.next().toCharArray();
			for (int j = 0; j < W; ++j) {
				B[i][j] = row[j] - '0';
			}
		}
		boolean[][] visited = new boolean[H][W];
		visited[SX][SY] = true;
		ArrayList<Integer> q = new ArrayList<>();
		q.add((SX << 16) | SY);
		for (int i = 0; i < q.size(); ++i) {
			int cx = q.get(i) >> 16;
			int cy = q.get(i) & 0xFFFF;
			if (GX == cx && GY == cy) {
				System.out.println("YES");
				return;
			}
			for (int j = 0; j < 4; ++j) {
				int nx = cx + DX[j];
				int ny = cy + DY[j];
				if (nx < 0 || H <= nx || ny < 0 || W <= ny) continue;
				if (visited[nx][ny]) continue;
				if (Math.abs(B[cx][cy] - B[nx][ny]) <= 1) {
					visited[nx][ny] = true;
					q.add((nx << 16) | ny);
				}
			}
			for (int j = 0; j < 4; ++j) {
				int nx = cx + DX[j] * 2;
				int ny = cy + DY[j] * 2;
				if (nx < 0 || H <= nx || ny < 0 || W <= ny) continue;
				if (visited[nx][ny]) continue;
				if (B[cx][cy] == B[nx][ny]) {
					visited[nx][ny] = true;
					q.add((nx << 16) | ny);
				}
			}
		}
		System.out.println("NO");
	}
}
0