結果

問題 No.1588 Connection
ユーザー momoyuumomoyuu
提出日時 2024-08-08 15:34:36
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 1,308 bytes
コンパイル時間 7,470 ms
コンパイル使用メモリ 101,756 KB
実行使用メモリ 25,220 KB
平均クエリ数 551.62
最終ジャッジ日時 2024-08-08 15:34:54
合計ジャッジ時間 5,808 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
24,580 KB
testcase_01 AC 21 ms
25,220 KB
testcase_02 AC 20 ms
25,220 KB
testcase_03 AC 20 ms
24,836 KB
testcase_04 AC 25 ms
24,580 KB
testcase_05 AC 20 ms
25,220 KB
testcase_06 AC 21 ms
25,220 KB
testcase_07 AC 20 ms
25,220 KB
testcase_08 AC 22 ms
25,220 KB
testcase_09 AC 23 ms
24,952 KB
testcase_10 AC 25 ms
24,836 KB
testcase_11 AC 22 ms
24,580 KB
testcase_12 AC 49 ms
24,580 KB
testcase_13 AC 57 ms
25,220 KB
testcase_14 AC 20 ms
24,964 KB
testcase_15 AC 22 ms
25,220 KB
testcase_16 AC 21 ms
24,836 KB
testcase_17 AC 21 ms
24,580 KB
testcase_18 AC 21 ms
25,220 KB
testcase_19 AC 21 ms
25,220 KB
testcase_20 AC 23 ms
25,220 KB
testcase_21 AC 92 ms
24,580 KB
testcase_22 AC 107 ms
25,220 KB
testcase_23 AC 50 ms
24,964 KB
testcase_24 AC 46 ms
25,220 KB
testcase_25 AC 62 ms
24,832 KB
testcase_26 AC 56 ms
25,220 KB
testcase_27 AC 37 ms
25,220 KB
testcase_28 AC 32 ms
24,964 KB
testcase_29 AC 91 ms
25,220 KB
testcase_30 AC 89 ms
25,220 KB
testcase_31 AC 20 ms
25,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<cassert>
int cnt = 0;
int ask(int i,int j){
    if(cnt==3000){
        cout<<"No"<<endl;
        exit(0);
    }
    cout<<i+1<<" "<<j+1<<endl;
    string s;
    cin>>s;
    assert(s!="-1");
    if(s=="Black") return 1;
    return 0;
}
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int n,m;
    cin>>n>>m;
    vector<pair<int,int>> que;
    que.push_back(make_pair(0,0));
    vector<vector<int>> vis(n,vector<int>(n,0));
    vis[0][0] = 1;
    int dx[] = {1,-1,0,0};
    int dy[] = {0,0,1,-1};
    for(int i = 0;i<que.size();i++){
        auto now = que[i];
        int ni = now.first;
        int nj = now.second;
        for(int k = 0;k<4;k++){
            int nni = ni + dx[k];
            int nnj = nj + dy[k];
            if(nni<0||nni>=n||nnj<0||nnj>=n) continue;
            if(vis[nni][nnj]!=0) continue;
            vis[nni][nnj] = -1;
            int p = ask(nni,nnj);
            if(p==1){
                vis[nni][nnj] = 1;
                que.push_back(make_pair(nni,nnj));
                if(nni==n-1&&nnj==n-1){
                    cout<<"Yes"<<endl;
                    return 0;
                }
            }
        }
    }
    cout<<"No"<<endl;

}   

0