結果

問題 No.424 立体迷路
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-28 04:52:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 1,276 bytes
コンパイル時間 3,786 ms
コンパイル使用メモリ 77,424 KB
実行使用メモリ 41,340 KB
最終ジャッジ日時 2024-07-05 07:16:30
合計ジャッジ時間 6,209 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
40,352 KB
testcase_01 AC 101 ms
40,840 KB
testcase_02 AC 103 ms
41,036 KB
testcase_03 AC 104 ms
41,068 KB
testcase_04 AC 107 ms
39,852 KB
testcase_05 AC 101 ms
41,184 KB
testcase_06 AC 104 ms
41,248 KB
testcase_07 AC 94 ms
40,060 KB
testcase_08 AC 104 ms
40,980 KB
testcase_09 AC 96 ms
39,868 KB
testcase_10 AC 104 ms
41,204 KB
testcase_11 AC 90 ms
39,488 KB
testcase_12 AC 105 ms
41,120 KB
testcase_13 AC 104 ms
41,232 KB
testcase_14 AC 103 ms
41,248 KB
testcase_15 AC 104 ms
41,048 KB
testcase_16 AC 104 ms
41,132 KB
testcase_17 AC 107 ms
40,908 KB
testcase_18 AC 109 ms
41,156 KB
testcase_19 AC 108 ms
41,036 KB
testcase_20 AC 109 ms
41,284 KB
testcase_21 AC 105 ms
40,860 KB
testcase_22 AC 107 ms
41,208 KB
testcase_23 AC 94 ms
39,992 KB
testcase_24 AC 112 ms
41,340 KB
testcase_25 AC 101 ms
40,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No424{
	
	static int h, w, sx, sy, gx, gy;
	static String[] B;
	static int[] dx = {0, 1, 0, -1};
	static int[] dy = {1, 0, -1, 0};
	static boolean[][] visited;

	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		h = sc.nextInt();
		w = sc.nextInt();
		sx = sc.nextInt();
		sy = sc.nextInt();
		gx = sc.nextInt();
		gy = sc.nextInt();
		B = new String[h];
		for(int i = 0; i < h; i++){
			B[i] = sc.next();
		}
		visited = new boolean[h][w];
		visited[sx-1][sy-1] = true;
		dfs(sx-1, sy-1);

		if(visited[gx-1][gy-1]) System.out.println("YES");
		else System.out.println("NO");
	}

	private static void dfs(int x, int y){
		for(int dir = 0; dir < 4; dir++){
			int x1 = x + dx[dir];
			int y1 = y + dy[dir];
			if(0 <= x1 && x1 < h && 0 <= y1 && y1 < w){
				if(Math.abs((int)B[x1].charAt(y1) - (int)B[x].charAt(y)) <= 1
				   && !visited[x1][y1]){
					visited[x1][y1] = true;
					dfs(x1, y1);
				}
			}

			int x2 = x + 2*dx[dir];
			int y2 = y + 2*dy[dir];
			if(0 <= x2 && x2 < h && 0 <= y2 && y2 < w){
				if(B[x2].charAt(y2) == B[x].charAt(y)
				   && (int)B[x1].charAt(y1) < (int)B[x].charAt(y)){
					if(!visited[x2][y2]){
						visited[x2][y2] = true;
						dfs(x2, y2);
					}
				}
			}
		}
	}
}
0