結果

問題 No.424 立体迷路
ユーザー ぴろずぴろず
提出日時 2016-09-22 22:34:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 1,371 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 79,596 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-07-05 07:01:03
合計ジャッジ時間 6,477 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,032 KB
testcase_01 AC 124 ms
53,760 KB
testcase_02 AC 116 ms
52,840 KB
testcase_03 AC 129 ms
54,024 KB
testcase_04 AC 128 ms
54,052 KB
testcase_05 AC 125 ms
53,912 KB
testcase_06 AC 130 ms
53,792 KB
testcase_07 AC 129 ms
53,892 KB
testcase_08 AC 125 ms
54,060 KB
testcase_09 AC 128 ms
54,056 KB
testcase_10 AC 128 ms
53,924 KB
testcase_11 AC 116 ms
52,620 KB
testcase_12 AC 129 ms
54,140 KB
testcase_13 AC 131 ms
54,180 KB
testcase_14 AC 128 ms
53,940 KB
testcase_15 AC 128 ms
53,892 KB
testcase_16 AC 127 ms
53,772 KB
testcase_17 AC 135 ms
53,912 KB
testcase_18 AC 136 ms
54,252 KB
testcase_19 AC 136 ms
54,112 KB
testcase_20 AC 136 ms
53,924 KB
testcase_21 AC 128 ms
53,908 KB
testcase_22 AC 135 ms
54,168 KB
testcase_23 AC 115 ms
52,740 KB
testcase_24 AC 144 ms
54,040 KB
testcase_25 AC 144 ms
54,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no424;

import java.util.ArrayDeque;
import java.util.Queue;
import java.util.Scanner;

public class Main {
	static int[] D = {1,0,-1,0};
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int h = sc.nextInt();
		int w = sc.nextInt();
		int[][] m = new int[h][w];
		int si = sc.nextInt() - 1;
		int sj = sc.nextInt() - 1;
		int gi = sc.nextInt() - 1;
		int gj = sc.nextInt() - 1;
		for(int i=0;i<h;i++) {
			String s = sc.next();
			for(int j=0;j<w;j++) {
				m[i][j] = s.charAt(j) - '0';
			}
		}
		boolean[][] used = new boolean[h][w];
		Queue<Integer> q = new ArrayDeque<>();
		q.offer(si * 100 + sj);
		used[si][sj] = true;
		while(!q.isEmpty()) {
			int c = q.poll();
			int ci = c / 100;
			int cj = c % 100;
			for(int k=0;k<4;k++) {
				int ni = ci + D[k];
				int nj = cj + D[k^1];
				if (ni < 0 || ni >= h || nj < 0 || nj >= w) {
					continue;
				}
				if (Math.abs(m[ci][cj] - m[ni][nj]) <= 1 && !used[ni][nj]) {
					used[ni][nj] = true;
					q.offer(ni * 100 + nj);
				}
				int ii = ni;
				int jj = nj;
				ni += D[k];
				nj += D[k^1];
				if (ni < 0 || ni >= h || nj < 0 || nj >= w) {
					continue;
				}
				if (m[ci][cj] == m[ni][nj]  && m[ci][cj] > m[ii][jj] && !used[ni][nj]) {
					used[ni][nj] = true;
					q.offer(ni * 100 + nj);
				}
			}
		}
		System.out.println(used[gi][gj] ? "YES" : "NO");
	}

}
0