結果

問題 No.424 立体迷路
ユーザー hermione17hermione17
提出日時 2016-09-22 22:41:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 1,470 bytes
コンパイル時間 2,952 ms
コンパイル使用メモリ 77,640 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-07-05 07:02:16
合計ジャッジ時間 6,675 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,336 KB
testcase_01 AC 111 ms
41,352 KB
testcase_02 AC 104 ms
40,276 KB
testcase_03 AC 117 ms
41,140 KB
testcase_04 AC 108 ms
40,352 KB
testcase_05 AC 103 ms
40,252 KB
testcase_06 AC 110 ms
40,976 KB
testcase_07 AC 109 ms
41,280 KB
testcase_08 AC 107 ms
41,132 KB
testcase_09 AC 107 ms
41,132 KB
testcase_10 AC 100 ms
40,132 KB
testcase_11 AC 108 ms
40,952 KB
testcase_12 AC 109 ms
41,272 KB
testcase_13 AC 117 ms
40,320 KB
testcase_14 AC 115 ms
41,356 KB
testcase_15 AC 117 ms
41,524 KB
testcase_16 AC 105 ms
40,468 KB
testcase_17 AC 122 ms
41,428 KB
testcase_18 AC 125 ms
41,212 KB
testcase_19 AC 124 ms
41,268 KB
testcase_20 AC 108 ms
40,216 KB
testcase_21 AC 103 ms
39,472 KB
testcase_22 AC 103 ms
40,012 KB
testcase_23 AC 115 ms
41,280 KB
testcase_24 AC 117 ms
40,772 KB
testcase_25 AC 128 ms
41,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintStream;
import java.util.Scanner;


public class Y424 {
	int h, w, sx, sy, tx, ty;
	String[] s;
	boolean[][] visited;
	
	static int[] dx = { 0, 1, 0, -1 };
	static int[] dy = { 1, 0, -1, 0 };
	
	Y424() throws Exception {
		Scanner in = new Scanner(System.in);
		PrintStream out = new PrintStream(System.out);
		
		h = in.nextInt();
		w = in.nextInt();
		sx = in.nextInt();
		sy = in.nextInt();
		tx = in.nextInt();
		ty = in.nextInt();
		s = new String[h];
		for (int i = 0; i < h; i++) {
			s[i] = in.next();
		}
		
		visited = new boolean[h][w];
		
		visited[sx-1][sy-1] = true;
		dfs(sx-1, sy-1);
		
		if (visited[tx-1][ty-1]) {
			out.println("YES");
		} else {
			out.println("NO");
		}
		
		out.flush();
	}
	
	void dfs(int x, int y) {
		for (int dir = 0; dir < 4; dir++) {
			int xx = x + dx[dir];
			int yy = y + dy[dir];
			
			if (0 <= xx && xx < h && 0 <= yy && yy < w) {
				if (Math.abs((int)s[xx].charAt(yy) - (int)s[x].charAt(y)) <= 1 && !visited[xx][yy]) {
					visited[xx][yy] = true;
					dfs(xx, yy);
				}
							
				int xxx = x + 2 * dx[dir];
				int yyy = y + 2 * dy[dir];
			
				if (0 <= xxx && xxx < h && 0 <= yyy && yyy < w) {
					if (s[x].charAt(y) == s[xxx].charAt(yyy) && (int)s[x].charAt(y) > (int)s[xx].charAt(yy)) {
						if (!visited[xxx][yyy]) {
							visited[xxx][yyy] = true;
							dfs(xxx, yyy);
						}
					}
				}
			}		
		}
	}

	public static void main(String argv[]) throws Exception {
		new Y424();
	}
}
0