結果
問題 | No.424 立体迷路 |
ユーザー | atkrym |
提出日時 | 2016-10-19 15:39:22 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,908 bytes |
コンパイル時間 | 2,233 ms |
コンパイル使用メモリ | 77,572 KB |
実行使用メモリ | 41,624 KB |
最終ジャッジ日時 | 2024-11-22 16:40:30 |
合計ジャッジ時間 | 6,290 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 126 ms
41,164 KB |
testcase_01 | AC | 123 ms
41,004 KB |
testcase_02 | AC | 113 ms
39,856 KB |
testcase_03 | AC | 128 ms
41,200 KB |
testcase_04 | AC | 113 ms
40,360 KB |
testcase_05 | AC | 123 ms
41,216 KB |
testcase_06 | AC | 122 ms
41,128 KB |
testcase_07 | AC | 124 ms
41,000 KB |
testcase_08 | AC | 108 ms
40,188 KB |
testcase_09 | AC | 115 ms
39,912 KB |
testcase_10 | AC | 124 ms
41,224 KB |
testcase_11 | AC | 125 ms
41,004 KB |
testcase_12 | AC | 117 ms
39,928 KB |
testcase_13 | AC | 122 ms
41,148 KB |
testcase_14 | AC | 125 ms
40,968 KB |
testcase_15 | AC | 117 ms
40,112 KB |
testcase_16 | AC | 110 ms
39,776 KB |
testcase_17 | AC | 134 ms
41,528 KB |
testcase_18 | AC | 116 ms
40,012 KB |
testcase_19 | AC | 128 ms
41,068 KB |
testcase_20 | AC | 137 ms
41,428 KB |
testcase_21 | AC | 117 ms
40,104 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 131 ms
41,268 KB |
testcase_25 | AC | 159 ms
41,624 KB |
ソースコード
import java.util.*; public class Main { private static Scanner sc = new Scanner(System.in); private static int h; private static int w; private static int sx; private static int sy; private static int ex; private static int ey; private static int[][] ary; private static boolean[][] is; public static void main(String[] args) throws Exception { h = sc.nextInt(); w = sc.nextInt(); sx = sc.nextInt()-1; sy = sc.nextInt()-1; ex = sc.nextInt()-1; ey = sc.nextInt()-1; ary = new int[h][w]; is = new boolean[h][w]; for (int i = 0;i < h;i++) { String s = sc.next(); for (int j = 0;j < w;j++) { ary[i][j] = Integer.parseInt(s.substring(j, j+1)); } } if (move(sx, sy)) { System.out.println("YES"); } else { System.out.println("NO"); } } private static boolean move(int x, int y) { if (x == ex && y == ey) return true; int[] dx = {-1, 0, 1, 0, -2, 0, 2, 0}; int[] dy = {0, 1, 0, -1, 0, 2, 0, -2}; int height = ary[x][y]; is[x][y] = true; for (int i = 0;i < 8;i++) { int nx = x + dx[i]; int ny = y + dy[i]; if (0 <= nx && nx < h && 0 <= ny && ny < w && !is[nx][ny]) { int nheight = ary[nx][ny]; boolean m = false; if (i < 4) { m = (height-1 <= nheight && nheight <= height+1); } else { m = (height == nheight); } if (m) { if (move(nx, ny)) { return true; } } } } return false; } }