結果

問題 No.424 立体迷路
ユーザー 37zigen37zigen
提出日時 2016-09-22 22:49:27
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 1,751 bytes
コンパイル時間 4,107 ms
コンパイル使用メモリ 78,716 KB
実行使用メモリ 684,824 KB
最終ジャッジ日時 2024-11-17 15:00:56
合計ジャッジ時間 16,617 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
46,440 KB
testcase_01 MLE -
testcase_02 AC 138 ms
41,700 KB
testcase_03 AC 139 ms
41,284 KB
testcase_04 AC 143 ms
41,160 KB
testcase_05 AC 138 ms
41,572 KB
testcase_06 AC 140 ms
41,392 KB
testcase_07 AC 138 ms
41,172 KB
testcase_08 AC 139 ms
41,316 KB
testcase_09 AC 138 ms
41,128 KB
testcase_10 AC 136 ms
41,036 KB
testcase_11 AC 135 ms
41,032 KB
testcase_12 AC 137 ms
41,268 KB
testcase_13 AC 140 ms
41,568 KB
testcase_14 AC 137 ms
41,500 KB
testcase_15 AC 139 ms
41,316 KB
testcase_16 AC 139 ms
41,700 KB
testcase_17 AC 144 ms
41,448 KB
testcase_18 AC 147 ms
41,280 KB
testcase_19 AC 146 ms
41,352 KB
testcase_20 AC 131 ms
40,148 KB
testcase_21 AC 137 ms
41,792 KB
testcase_22 AC 142 ms
41,140 KB
testcase_23 AC 136 ms
41,576 KB
testcase_24 TLE -
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package No400番台;

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

public class B {
	public static void main(String[] args) {
		new B().run();
	}

	void run() {
		solver();
	}

	void solver() {
		Scanner sc = new Scanner(System.in);
		int h = sc.nextInt();
		int w = sc.nextInt();
		int sy = sc.nextInt() - 1;
		int sx = sc.nextInt() - 1;
		int gy = sc.nextInt() - 1;
		int gx = sc.nextInt() - 1;
		char[][] tmp = new char[h][w];
		for (int i = 0; i < h; i++) {
			tmp[i] = sc.next().toCharArray();
		}
		int[][] table = new int[h][w];
		for (int i = 0; i < h; i++) {
			for (int j = 0; j < w; j++) {
				table[i][j] = tmp[i][j] - '0';
			}
		}
		ArrayDeque<P> que = new ArrayDeque<>();
		boolean[][] arrived = new boolean[h][w];
		arrived[sy][sx] = true;
		que.add(new P(sx, sy));
		while (!que.isEmpty()) {
			P p = que.poll();
			arrived[p.y][p.x] = true;
			for (int i = 0; i < 4; i++) {
				int nx = p.x + dx[i];
				int ny = p.y + dy[i];
				if (0 <= nx && nx < w && 0 <= ny && ny < h && !arrived[ny][nx]) {
					if (Math.abs(table[p.y][p.x] - table[ny][nx]) <= 1) {
						que.add(new P(nx, ny));
					}
				}
				int nnx = p.x + 2 * dx[i];
				int nny = p.y + 2 * dy[i];
				if (0 <= nnx && nnx < w && 0 <= nny && nny < h && !arrived[nny][nnx]) {
					if (table[p.y][p.x] == table[nny][nnx] && table[p.y][p.x] > table[ny][nx]) {
						que.add(new P(nnx, nny));
					}
				}
			}
		}
		if (arrived[gy][gx]) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
	}

	int[] dx = { 1, -1, 0, 0 };
	int[] dy = { 0, 0, 1, -1 };

	class P {
		int x;
		int y;

		P(int x, int y) {
			this.x = x;
			this.y = y;
		}
	}

	void tr(Object... o) {
		System.out.println(Arrays.deepToString(o));
	}
}
0