結果
問題 | No.367 ナイトの転身 |
ユーザー | 37zigen |
提出日時 | 2016-04-29 23:32:15 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,906 bytes |
コンパイル時間 | 1,941 ms |
コンパイル使用メモリ | 77,756 KB |
実行使用メモリ | 54,200 KB |
最終ジャッジ日時 | 2024-10-04 19:07:19 |
合計ジャッジ時間 | 7,816 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 101 ms
52,760 KB |
testcase_01 | AC | 112 ms
54,036 KB |
testcase_02 | AC | 123 ms
53,952 KB |
testcase_03 | AC | 117 ms
53,752 KB |
testcase_04 | AC | 112 ms
53,932 KB |
testcase_05 | AC | 102 ms
52,576 KB |
testcase_06 | AC | 140 ms
53,788 KB |
testcase_07 | AC | 110 ms
53,812 KB |
testcase_08 | AC | 111 ms
53,828 KB |
testcase_09 | WA | - |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
package yukicoder; import java.util.ArrayDeque; 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 h=sc.nextInt(); int w=sc.nextInt(); int sx=-1,sy=-1; char[][] table=new char[h][w]; for(int i=0;i<h;i++){ table[i]=sc.next().toCharArray(); for(int j=0;j<w;j++){ char c=table[i][j]; if(c=='S'){ sx=j; sy=i; } } } boolean[][] arrived_Knight=new boolean[h][w]; boolean[][] arrived_Bishop=new boolean[h][w]; arrived_Knight[sy][sx]=true; ArrayDeque<P> que=new ArrayDeque<P>(); que.add(new P(sx,sy,"Knight",0)); while(!que.isEmpty()){ P p=que.poll(); if(table[p.y][p.x]=='G'){ System.out.println(p.n); return; }else if(p.state.equals("Knight")){ arrived_Knight[p.y][p.x]=true; for(int i=0;i<8;i++){ int nx=p.x+dx1[i]; int ny=p.y+dy1[i]; if(nx<0||ny<0||nx>=w||ny>=h)continue; if(arrived_Knight[ny][nx])continue; if(table[ny][nx]=='R'){ que.add(new P(nx,ny,"Bishop",p.n+1)); }else{ que.add(new P(nx,ny,"Knight",p.n+1)); } } }else if(p.state.equals("Bishop")){ arrived_Bishop[p.y][p.x]=true; for(int i=0;i<4;i++){ int nx=p.x+dx2[i]; int ny=p.y+dy2[i]; if(nx<0||ny<0||nx>=w||ny>=h)continue; if(arrived_Bishop[ny][nx])continue; if(table[ny][nx]=='R'){ que.add(new P(nx,ny,"Knight",p.n+1)); }else{ que.add(new P(nx,ny,"Bishop",p.n+1)); } } } } System.out.println(-1); } final int[] dx1={1,1,-1,-1,2,2,-2,-2}; final int[] dy1={2,-2,2,-2,1,-1,1,-1}; final int[] dx2={1,1,-1,-1}; final int[] dy2={1,-1,1,-1}; class P{ int x; int y; String state;//Knight,Bishop int n; P(int x,int y,String state,int n){ this.x=x; this.y=y; this.state=state; this.n=n; } } }