結果

問題 No.424 立体迷路
ユーザー tomeruntomerun
提出日時 2016-09-22 22:37:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,504 bytes
コンパイル時間 1,794 ms
コンパイル使用メモリ 79,276 KB
実行使用メモリ 56,288 KB
最終ジャッジ日時 2024-11-17 13:49:57
合計ジャッジ時間 5,330 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
54,016 KB
testcase_01 AC 96 ms
52,868 KB
testcase_02 AC 105 ms
54,036 KB
testcase_03 AC 107 ms
54,028 KB
testcase_04 AC 100 ms
53,824 KB
testcase_05 AC 96 ms
52,848 KB
testcase_06 AC 106 ms
54,048 KB
testcase_07 AC 103 ms
53,904 KB
testcase_08 AC 106 ms
54,216 KB
testcase_09 AC 108 ms
54,164 KB
testcase_10 AC 95 ms
52,852 KB
testcase_11 AC 106 ms
54,280 KB
testcase_12 AC 105 ms
53,968 KB
testcase_13 AC 104 ms
54,112 KB
testcase_14 AC 108 ms
54,020 KB
testcase_15 AC 106 ms
54,016 KB
testcase_16 AC 107 ms
54,060 KB
testcase_17 AC 103 ms
52,852 KB
testcase_18 AC 112 ms
54,064 KB
testcase_19 AC 101 ms
52,988 KB
testcase_20 AC 112 ms
53,976 KB
testcase_21 AC 96 ms
53,016 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 99 ms
52,420 KB
testcase_25 AC 104 ms
53,028 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