結果

問題 No.424 立体迷路
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-02-04 03:02:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,600 bytes
コンパイル時間 2,036 ms
コンパイル使用メモリ 78,248 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-06-06 14:08:05
合計ジャッジ時間 5,918 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,776 KB
testcase_01 AC 110 ms
41,000 KB
testcase_02 AC 107 ms
40,952 KB
testcase_03 AC 103 ms
39,928 KB
testcase_04 AC 113 ms
41,160 KB
testcase_05 AC 111 ms
40,752 KB
testcase_06 AC 103 ms
39,928 KB
testcase_07 AC 104 ms
40,184 KB
testcase_08 AC 101 ms
40,024 KB
testcase_09 AC 107 ms
40,964 KB
testcase_10 AC 107 ms
41,008 KB
testcase_11 AC 110 ms
40,892 KB
testcase_12 AC 106 ms
40,912 KB
testcase_13 AC 111 ms
41,328 KB
testcase_14 AC 108 ms
40,688 KB
testcase_15 AC 110 ms
40,892 KB
testcase_16 AC 109 ms
41,356 KB
testcase_17 AC 114 ms
41,136 KB
testcase_18 AC 111 ms
41,068 KB
testcase_19 AC 120 ms
41,108 KB
testcase_20 AC 113 ms
40,408 KB
testcase_21 AC 118 ms
41,304 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 126 ms
41,580 KB
testcase_25 AC 102 ms
40,072 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");
                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&&Math.abs(Hight[nx][ny]-Hight[x][y])==0) ){
                        dist[nx][ny]=dist[x][y]+1;
                        q.add(nx);
                        q.add(ny);
                    }
                }
            }
        }
        System.out.println("NO");
    }
}
0