結果

問題 No.424 立体迷路
ユーザー tomeruntomerun
提出日時 2016-09-22 22:37:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,504 bytes
コンパイル時間 3,091 ms
コンパイル使用メモリ 74,660 KB
実行使用メモリ 59,712 KB
最終ジャッジ日時 2023-08-11 01:44:17
合計ジャッジ時間 6,712 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
56,124 KB
testcase_01 AC 120 ms
55,748 KB
testcase_02 AC 120 ms
55,848 KB
testcase_03 AC 120 ms
55,872 KB
testcase_04 AC 122 ms
55,968 KB
testcase_05 AC 120 ms
55,516 KB
testcase_06 AC 122 ms
56,188 KB
testcase_07 AC 120 ms
55,612 KB
testcase_08 AC 122 ms
56,080 KB
testcase_09 AC 121 ms
55,892 KB
testcase_10 AC 120 ms
56,088 KB
testcase_11 AC 125 ms
55,980 KB
testcase_12 AC 123 ms
55,788 KB
testcase_13 AC 124 ms
55,556 KB
testcase_14 AC 121 ms
55,828 KB
testcase_15 AC 123 ms
55,728 KB
testcase_16 AC 122 ms
55,604 KB
testcase_17 AC 128 ms
55,712 KB
testcase_18 AC 131 ms
55,952 KB
testcase_19 AC 133 ms
55,868 KB
testcase_20 AC 133 ms
55,712 KB
testcase_21 AC 126 ms
55,456 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 131 ms
55,712 KB
testcase_25 AC 130 ms
55,752 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