結果

問題 No.424 立体迷路
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-02-04 03:12:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 1,947 bytes
コンパイル時間 1,910 ms
コンパイル使用メモリ 80,688 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-07-05 07:13:55
合計ジャッジ時間 5,434 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,084 KB
testcase_01 AC 103 ms
41,200 KB
testcase_02 AC 104 ms
40,840 KB
testcase_03 AC 105 ms
40,908 KB
testcase_04 AC 104 ms
41,344 KB
testcase_05 AC 104 ms
41,056 KB
testcase_06 AC 104 ms
41,112 KB
testcase_07 AC 112 ms
41,192 KB
testcase_08 AC 96 ms
39,868 KB
testcase_09 AC 106 ms
41,040 KB
testcase_10 AC 104 ms
40,892 KB
testcase_11 AC 102 ms
41,008 KB
testcase_12 AC 104 ms
41,072 KB
testcase_13 AC 107 ms
39,900 KB
testcase_14 AC 108 ms
41,136 KB
testcase_15 AC 97 ms
40,484 KB
testcase_16 AC 106 ms
41,128 KB
testcase_17 AC 108 ms
40,192 KB
testcase_18 AC 107 ms
41,304 KB
testcase_19 AC 109 ms
41,052 KB
testcase_20 AC 109 ms
40,952 KB
testcase_21 AC 103 ms
40,852 KB
testcase_22 AC 110 ms
41,276 KB
testcase_23 AC 106 ms
41,068 KB
testcase_24 AC 117 ms
41,304 KB
testcase_25 AC 115 ms
41,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int H = sc.nextInt();
        int W = sc.nextInt();
        int sx = sc.nextInt()-1;
        int sy = sc.nextInt()-1;
        int gx = sc.nextInt()-1;
        int gy = sc.nextInt()-1;
        int [][] Hight = new int [H][W];
        int [][] dist = new int [H][W];
        for(int i=0; i<H; i++){
            String tmp = sc.next();
            for(int j=0; j<W; j++){
                Hight[i][j] = tmp.charAt(j)-'0';
                dist[i][j] = -1;
            }
        }
        Queue<Integer> q = new LinkedList<>();
        int [] dx = {1,0,-1,0};
        int [] dy = {0,1,0,-1};
        q.add(sx);
        q.add(sy);
        dist[sx][sy]=0;
        while(!q.isEmpty()){
            int x = q.poll();
            int y = q.poll();
            if(x==gx&&y==gy){
                System.out.println("YES");
                //print(H,W,dist);
                return;
            }
            for(int k=1; k<=2; k++){
                for(int i=0; i<4; i++){
                    int nx = x+k*dx[i];
                    int ny = y+k*dy[i];
                    if(nx<0||ny<0||nx>=H||ny>=W)continue;
                    if(dist[nx][ny]!=-1)continue;
                    if( (k==1&&Math.abs(Hight[nx][ny]-Hight[x][y])<=1)||
                        (k==2&&(Hight[nx][ny]-Hight[x][y])==0&&Hight[nx][ny]>Hight[(nx+x)/2][(ny+y)/2]) ){
                        dist[nx][ny]=dist[x][y]+1;
                        q.add(nx);
                        q.add(ny);
                    }
                }
            }
        }
        //print(H,W,dist);
        System.out.println("NO");
    }
    static void print(int H, int W, int[][]A){
        for(int i=0; i<H; i++){
            for(int j=0; j<W; j++){
                System.out.print(A[i][j]+"  ");
            }
            System.out.println();
        }
    }
}
0