結果
問題 | No.1588 Connection |
ユーザー | merlin |
提出日時 | 2021-07-08 23:23:04 |
言語 | Java21 (openjdk 21) |
結果 |
WA
(最新)
QLE
(最初)
|
実行時間 | - |
コード長 | 2,756 bytes |
コンパイル時間 | 4,676 ms |
コンパイル使用メモリ | 80,528 KB |
実行使用メモリ | 83,380 KB |
平均クエリ数 | 425.47 |
最終ジャッジ日時 | 2024-07-17 12:32:58 |
合計ジャッジ時間 | 11,182 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 115 ms
69,144 KB |
testcase_01 | AC | 112 ms
69,368 KB |
testcase_02 | AC | 115 ms
69,708 KB |
testcase_03 | AC | 110 ms
69,352 KB |
testcase_04 | AC | 113 ms
69,604 KB |
testcase_05 | AC | 110 ms
69,608 KB |
testcase_06 | AC | 113 ms
69,848 KB |
testcase_07 | AC | 117 ms
69,464 KB |
testcase_08 | AC | 127 ms
70,168 KB |
testcase_09 | AC | 126 ms
69,664 KB |
testcase_10 | AC | 126 ms
69,808 KB |
testcase_11 | AC | 127 ms
69,612 KB |
testcase_12 | AC | 243 ms
69,888 KB |
testcase_13 | AC | 239 ms
70,444 KB |
testcase_14 | AC | 130 ms
69,452 KB |
testcase_15 | AC | 119 ms
69,700 KB |
testcase_16 | AC | 121 ms
69,216 KB |
testcase_17 | AC | 117 ms
69,320 KB |
testcase_18 | AC | 119 ms
69,692 KB |
testcase_19 | AC | 138 ms
71,980 KB |
testcase_20 | AC | 222 ms
77,804 KB |
testcase_21 | AC | 478 ms
83,316 KB |
testcase_22 | AC | 497 ms
83,380 KB |
testcase_23 | AC | 258 ms
72,844 KB |
testcase_24 | AC | 198 ms
70,384 KB |
testcase_25 | AC | 490 ms
82,380 KB |
testcase_26 | AC | 487 ms
82,784 KB |
testcase_27 | AC | 243 ms
72,492 KB |
testcase_28 | AC | 180 ms
70,160 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 111 ms
69,700 KB |
ソースコード
import java.io.*; import java.util.*; class Main { public static void main(String args[])throws Exception { BufferedReader bu=new BufferedReader(new InputStreamReader(System.in)); StringBuilder sb=new StringBuilder(); String s[]=bu.readLine().split(" "); int n=Integer.parseInt(s[0]),m=Integer.parseInt(s[1]); boolean b[][]=new boolean[n+1][n+1]; b[1][1]=b[n][n]=true; m-=2; ArrayList<Pair> g[]=new ArrayList[2*n+1]; int i,j; for(i=0;i<=2*n;i++) g[i]=new ArrayList<>(); for(i=1;i<=n;i++) for(j=1;j<=n;j++) g[i+j].add(new Pair(i,j)); int l=2,r=2*n; boolean vis[][]=new boolean[n+1][n+1]; while(l<=r) { Queue<Pair> q=new LinkedList<>(); for(Pair x:g[l]) { if(b[x.x][x.y] && x.x+1<=n && !vis[x.x+1][x.y]) { vis[x.x+1][x.y]=true; q.add(new Pair(x.x+1,x.y)); } if(b[x.x][x.y] && x.y+1<=n && !vis[x.x][x.y+1]) { vis[x.x][x.y+1]=true; q.add(new Pair(x.x,x.y+1)); } } for(Pair x:g[r]) { if(b[x.x][x.y] && x.x-1>0 && !vis[x.x-1][x.y]) { vis[x.x-1][x.y]=true; q.add(new Pair(x.x-1,x.y)); } if(b[x.x][x.y] && x.y-1>0 && !vis[x.x][x.y-1]) { vis[x.x][x.y-1]=true; q.add(new Pair(x.x,x.y-1)); } } while(!q.isEmpty()) { Pair p=q.poll(); System.out.print(p.x+" "+p.y+"\n"); System.out.flush(); String ver=bu.readLine(); if(ver.charAt(0)=='-') return; if(ver.charAt(0)=='B') { m--; b[p.x][p.y]=true; } if(m==0) break; } if(m==0) break; l++; r--; } for(i=1;i<=n;i++) Arrays.fill(vis[i],false); vis[1][1]=true; for(i=2;i<=n;i++) { vis[1][i]=vis[1][i-1]&b[1][i]; vis[i][1]=vis[i-1][1]&b[i][1]; } for(i=2;i<=n;i++) for(j=2;j<=n;j++) vis[i][j]=b[i][j]&(vis[i-1][j]|vis[i][j-1]); if(vis[n][n]) sb.append("Yes\n"); else sb.append("No\n"); System.out.print(sb); System.out.flush(); return; } static class Pair { int x,y; Pair(int a,int b) { x=a; y=b; } } }