結果
問題 | No.424 立体迷路 |
ユーザー | yun_app |
提出日時 | 2016-09-28 16:36:14 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 79 ms / 2,000 ms |
コード長 | 2,921 bytes |
コンパイル時間 | 1,810 ms |
コンパイル使用メモリ | 78,920 KB |
実行使用メモリ | 39,096 KB |
最終ジャッジ日時 | 2024-07-05 07:10:56 |
合計ジャッジ時間 | 3,732 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
37,188 KB |
testcase_01 | AC | 42 ms
37,188 KB |
testcase_02 | AC | 42 ms
36,808 KB |
testcase_03 | AC | 42 ms
37,268 KB |
testcase_04 | AC | 42 ms
37,340 KB |
testcase_05 | AC | 41 ms
36,928 KB |
testcase_06 | AC | 41 ms
37,176 KB |
testcase_07 | AC | 41 ms
37,052 KB |
testcase_08 | AC | 42 ms
37,044 KB |
testcase_09 | AC | 42 ms
36,664 KB |
testcase_10 | AC | 41 ms
37,364 KB |
testcase_11 | AC | 41 ms
36,648 KB |
testcase_12 | AC | 42 ms
36,932 KB |
testcase_13 | AC | 43 ms
37,232 KB |
testcase_14 | AC | 41 ms
37,212 KB |
testcase_15 | AC | 41 ms
36,972 KB |
testcase_16 | AC | 42 ms
36,932 KB |
testcase_17 | AC | 50 ms
37,444 KB |
testcase_18 | AC | 50 ms
37,300 KB |
testcase_19 | AC | 51 ms
37,512 KB |
testcase_20 | AC | 53 ms
37,784 KB |
testcase_21 | AC | 44 ms
36,924 KB |
testcase_22 | AC | 43 ms
37,340 KB |
testcase_23 | AC | 42 ms
37,020 KB |
testcase_24 | AC | 67 ms
39,096 KB |
testcase_25 | AC | 79 ms
38,816 KB |
ソースコード
/* package whatever; // don't place package name! */ import java.util.*; import java.lang.*; import java.io.*; /* Name of the class has to be "Main" only if the class is public. */ class Ideone { public static void main (String[] args) throws java.lang.Exception { // your code goes here BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] lines = br.readLine().split(" "); int h = Integer.parseInt(lines[0]); int w = Integer.parseInt(lines[1]); lines = br.readLine().split(" "); int sh = Integer.parseInt(lines[0])-1; int sw = Integer.parseInt(lines[1])-1; int gh = Integer.parseInt(lines[2])-1; int gw = Integer.parseInt(lines[3])-1; int[][] map = new int[h][w]; boolean[][] visit = new boolean[h][w]; for(int i=0;i<h;i++){ lines = br.readLine().split(""); for(int j=0;j<w;j++){ map[i][j] = Integer.parseInt(lines[j]); visit[i][j] = false; } } Deque<Pair> deq = new ArrayDeque<Pair>(); Pair start = new Pair(sh,sw); Pair goal = new Pair(gh,gw); deq.add(start); visit[sh][sw] = true; start:while(!deq.isEmpty()){ Pair p = deq.removeFirst(); for(Pair next:getNext(map,p)){ if(visit[next.h][next.w] == false){ visit[next.h][next.w] = true; if(next.equals(goal)){ break start; } deq.add(next); } } } System.out.println(visit[gh][gw]?"YES":"NO"); } static private ArrayList<Pair> getNext(int[][] map,Pair p){ int now_height = map[p.h][p.w]; ArrayList<Pair> ret = new ArrayList<Pair>(); for(Pair next:Pair.nexts){ try{ if(Math.abs(map[p.h+next.h][p.w+next.w] - now_height) <= 1){ ret.add(new Pair(p.h+next.h,p.w+next.w)); } if( map[p.h+next.h][p.w+next.w] < now_height && map[p.h+next.h*2][p.w+next.w*2] == now_height){ ret.add(new Pair(p.h+next.h*2,p.w+next.w*2)); } }catch(Exception e){} } return ret; } private static class Pair{ static Pair[] nexts = new Pair[]{new Pair(1,0),new Pair(0,1),new Pair(-1,0),new Pair(0,-1)}; public int h; public int w; public Pair(int h,int w){ this.h = h; this.w = w; } public boolean equals(Pair p){ return this.h==p.h && this.w == p.w; } public String toString(){ return new StringBuilder().append(h).append(",").append(w).toString(); } } }