結果

問題 No.1588 Connection
ユーザー merlinmerlin
提出日時 2021-07-09 00:28:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 1,959 bytes
コンパイル時間 2,435 ms
コンパイル使用メモリ 80,672 KB
実行使用メモリ 70,588 KB
平均クエリ数 485.91
最終ジャッジ日時 2024-07-17 12:49:30
合計ジャッジ時間 9,480 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
66,940 KB
testcase_01 AC 113 ms
69,756 KB
testcase_02 AC 110 ms
69,408 KB
testcase_03 AC 109 ms
69,408 KB
testcase_04 AC 111 ms
69,772 KB
testcase_05 AC 109 ms
69,468 KB
testcase_06 AC 114 ms
69,252 KB
testcase_07 AC 108 ms
69,448 KB
testcase_08 AC 121 ms
69,508 KB
testcase_09 AC 118 ms
69,328 KB
testcase_10 AC 117 ms
69,156 KB
testcase_11 AC 125 ms
69,088 KB
testcase_12 AC 132 ms
69,792 KB
testcase_13 AC 147 ms
70,036 KB
testcase_14 AC 110 ms
69,076 KB
testcase_15 AC 114 ms
69,332 KB
testcase_16 AC 111 ms
69,256 KB
testcase_17 AC 110 ms
69,488 KB
testcase_18 AC 110 ms
69,012 KB
testcase_19 AC 110 ms
69,056 KB
testcase_20 AC 111 ms
69,132 KB
testcase_21 AC 325 ms
70,256 KB
testcase_22 AC 330 ms
70,588 KB
testcase_23 AC 246 ms
69,988 KB
testcase_24 AC 200 ms
69,916 KB
testcase_25 AC 264 ms
70,412 KB
testcase_26 AC 259 ms
70,300 KB
testcase_27 AC 203 ms
70,408 KB
testcase_28 AC 167 ms
70,216 KB
testcase_29 AC 326 ms
70,388 KB
testcase_30 AC 322 ms
70,532 KB
testcase_31 AC 106 ms
69,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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])-2;
        boolean b[][]=new boolean[n+1][n+1];
        b[1][1]=b[n][n]=true;

        int di[][]={{-1,0},{0,1},{1,0},{0,-1}};
        boolean vis[][]=new boolean[n+1][n+1],ask[][]=new boolean[n+1][n+1];
        vis[1][1]=true;
        Stack<Pair> q=new Stack<>();
        q.add(new Pair(1,1));
        while(!q.isEmpty())
        {
            Pair p=q.pop();
            //System.out.println(p.x+" "+p.y);
            for(int d[]:di)
            {
                int tx=p.x+d[0],ty=p.y+d[1];
                if(tx>0 && tx<=n && ty>0 && ty<=n && !vis[tx][ty])
                {
                    vis[tx][ty]=true;
                    if(b[tx][ty]) q.add(new Pair(tx,ty));
                    else if(!ask[tx][ty] && m>0)
                    {
                        System.out.print(tx+" "+ty+"\n");
                        System.out.flush();
                        String ver=bu.readLine();
                        if(ver.charAt(0)=='-') return;
                        if(ver.charAt(0)=='B')
                        {
                            q.add(new Pair(tx,ty));
                            b[tx][ty]=true;
                            m--;
                        }
                        ask[tx][ty]=true;
                    }
                }
            }
            if(vis[n][n]) break;
        }

        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;
        }
    }
}
0