結果

問題 No.1588 Connection
ユーザー merlinmerlin
提出日時 2021-07-08 23:45:12
言語 Java21
(openjdk 21)
結果
WA  
(最新)
QLE  
(最初)
実行時間 -
コード長 2,593 bytes
コンパイル時間 2,488 ms
コンパイル使用メモリ 77,908 KB
実行使用メモリ 84,772 KB
平均クエリ数 331.94
最終ジャッジ日時 2023-09-24 11:45:51
合計ジャッジ時間 10,028 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
63,412 KB
testcase_01 AC 111 ms
69,156 KB
testcase_02 AC 101 ms
68,744 KB
testcase_03 AC 109 ms
68,156 KB
testcase_04 AC 103 ms
69,436 KB
testcase_05 AC 102 ms
68,376 KB
testcase_06 AC 103 ms
68,644 KB
testcase_07 AC 104 ms
66,364 KB
testcase_08 AC 114 ms
68,584 KB
testcase_09 AC 114 ms
68,736 KB
testcase_10 AC 116 ms
68,684 KB
testcase_11 AC 112 ms
68,620 KB
testcase_12 AC 218 ms
69,764 KB
testcase_13 AC 230 ms
70,304 KB
testcase_14 AC 99 ms
68,604 KB
testcase_15 AC 105 ms
68,944 KB
testcase_16 AC 103 ms
68,832 KB
testcase_17 AC 102 ms
69,544 KB
testcase_18 AC 102 ms
69,236 KB
testcase_19 AC 111 ms
71,908 KB
testcase_20 AC 167 ms
76,476 KB
testcase_21 AC 372 ms
82,760 KB
testcase_22 AC 385 ms
84,772 KB
testcase_23 AC 231 ms
70,512 KB
testcase_24 AC 177 ms
70,096 KB
testcase_25 AC 326 ms
79,448 KB
testcase_26 AC 344 ms
78,568 KB
testcase_27 AC 192 ms
70,000 KB
testcase_28 AC 173 ms
69,720 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 101 ms
68,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    static BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
    public static void main(String args[])throws Exception
    {
        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));

        boolean vis[][]=new boolean[n+1][n+1]; t=2500;
        for(i=2;i<2*n && m>0 && t>0;i++)
        {
            boolean cur=move(vis,b,g,i);
            if(!cur) break;
        }

        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 int m,t;
    static boolean move(boolean vis[][],boolean b[][],ArrayList<Pair> g[],int l)throws Exception
    {
        if(m==0) return false;
        int n=vis.length-1; boolean ans=false;
        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] && !b[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] && !b[x.x][x.y+1])
            {
                vis[x.x][x.y+1]=true;
                q.add(new Pair(x.x,x.y+1));
            }
        }

        while(!q.isEmpty())
        {
            if(t<=0) return false;
            Pair p=q.poll();
            System.out.print(p.x+" "+p.y+"\n");
            System.out.flush();
            t--;

            String ver=bu.readLine();
            if(ver.charAt(0)=='-') return false;
            if(ver.charAt(0)=='B')
            {
                m--;
                b[p.x][p.y]=true;
                ans=true;
            }
            if(m==0) break;
        }
        return ans;
    }

    static class Pair
    {
        int x,y;
        Pair(int a,int b)
        {
            x=a;
            y=b;
        }
    }
}
0