結果
問題 | No.124 門松列(3) |
ユーザー | 37zigen |
提出日時 | 2016-05-01 17:36:07 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 229 ms / 5,000 ms |
コード長 | 2,266 bytes |
コンパイル時間 | 2,385 ms |
コンパイル使用メモリ | 78,384 KB |
実行使用メモリ | 47,264 KB |
最終ジャッジ日時 | 2024-10-05 00:39:43 |
合計ジャッジ時間 | 7,520 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 215 ms
47,264 KB |
testcase_01 | AC | 116 ms
41,264 KB |
testcase_02 | AC | 117 ms
39,996 KB |
testcase_03 | AC | 229 ms
46,724 KB |
testcase_04 | AC | 211 ms
46,256 KB |
testcase_05 | AC | 217 ms
46,096 KB |
testcase_06 | AC | 123 ms
41,188 KB |
testcase_07 | AC | 113 ms
41,036 KB |
testcase_08 | AC | 115 ms
41,036 KB |
testcase_09 | AC | 116 ms
41,236 KB |
testcase_10 | AC | 117 ms
41,124 KB |
testcase_11 | AC | 111 ms
41,144 KB |
testcase_12 | AC | 118 ms
41,200 KB |
testcase_13 | AC | 106 ms
41,028 KB |
testcase_14 | AC | 125 ms
40,996 KB |
testcase_15 | AC | 127 ms
41,560 KB |
testcase_16 | AC | 149 ms
41,952 KB |
testcase_17 | AC | 135 ms
41,476 KB |
testcase_18 | AC | 122 ms
40,932 KB |
testcase_19 | AC | 130 ms
41,548 KB |
testcase_20 | AC | 137 ms
41,688 KB |
testcase_21 | AC | 125 ms
41,008 KB |
testcase_22 | AC | 147 ms
41,580 KB |
testcase_23 | AC | 189 ms
45,596 KB |
testcase_24 | AC | 194 ms
45,872 KB |
testcase_25 | AC | 194 ms
45,320 KB |
testcase_26 | AC | 167 ms
43,600 KB |
testcase_27 | AC | 155 ms
42,416 KB |
testcase_28 | AC | 210 ms
46,264 KB |
testcase_29 | AC | 216 ms
46,408 KB |
ソースコード
package yukicoder; import java.util.ArrayDeque; import java.util.Arrays; import java.util.Queue; import java.util.Scanner; public class Main{ public static void main(String[] args)throws Exception{ new Main().solve(); } void solve(){ Scanner sc=new Scanner(System.in); int w=sc.nextInt(); int h=sc.nextInt(); int[][] table=new int[h][w]; for(int i=0;i<h;i++){ for(int j=0;j<w;j++){ table[i][j]=sc.nextInt(); } } BFS bfs=new BFS(table); int ans=bfs.bfs(0, 0, w-1, h-1); System.out.println(ans); } int[] dx={1,-1,0,0}; int[] dy={0,0,-1,1}; class BFS{ Queue<Vertice> q; final long INF=Long.MAX_VALUE/4; int[][] table; int w,h; boolean[][][] arrived; BFS(int[][] table){ h=table.length; w=table[0].length; this.table=new int[h][w]; for(int i=0;i<h;i++){ for(int j=0;j<w;j++){ this.table[i][j]=table[i][j]; } } q=new ArrayDeque<Vertice>(h*w); arrived=new boolean[h][w][4]; } int bfs(int sx,int sy,int gx,int gy){ q.add(new Vertice(sx,sy,-1,-1,-1,-1,-1,-1,0)); int ans=-1; arrived[sy][sx][0]=true; arrived[sy][sx][1]=true; arrived[sy][sx][2]=true; arrived[sy][sx][3]=true; while(!q.isEmpty()){ Vertice v=q.poll(); if(v.x==gx&&v.y==gy){ ans=v.d; break; } for(int i=0;i<4;i++){ int nx=v.x+dx[i]; int ny=v.y+dy[i]; if(nx<0||ny<0||nx>=w||ny>=h)continue; if(arrived[ny][nx][i])continue; if(v.d>=1){ if(!isKadomatsu(table[ny][nx],table[v.y][v.x],table[v.y1][v.x1])){ continue; } } q.add(new Vertice(nx,ny,v.x,v.y,v.x1,v.y1,v.x2,v.y2, v.d+1)); arrived[ny][nx][i]=true; } } return ans; } } class Vertice{ int x; int y; int d; int x1,y1,x2,y2,x3,y3;//(x1,y1)は一つ前の座標、(x2,y2)は二つ前の座標 Vertice(int x,int y,int x1,int y1,int x2,int y2,int x3,int y3,int d){ this.x=x; this.y=y; this.d=d; this.x1=x1; this.y1=y1; this.x2=x2; this.y2=y2; this.x3=x3; this.y3=y3; } } boolean isKadomatsu(int n1,int n2,int n3){ if(n2>n1&&n2>n3&&n1!=n3){ return true; }else if(n2<n1&&n2<n3&&n1!=n3){ return true; }else { return false; } } void tr(Object...o){System.out.println(Arrays.deepToString(o));} }