結果

問題 No.1588 Connection
ユーザー umezoumezo
提出日時 2021-07-08 23:10:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 1,288 bytes
コンパイル時間 2,597 ms
コンパイル使用メモリ 207,124 KB
実行使用メモリ 25,476 KB
平均クエリ数 547.62
最終ジャッジ日時 2024-07-17 12:27:59
合計ジャッジ時間 5,352 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,836 KB
testcase_01 AC 24 ms
25,220 KB
testcase_02 AC 24 ms
24,568 KB
testcase_03 AC 24 ms
24,836 KB
testcase_04 AC 25 ms
24,836 KB
testcase_05 AC 24 ms
25,220 KB
testcase_06 AC 25 ms
24,836 KB
testcase_07 AC 25 ms
25,220 KB
testcase_08 AC 27 ms
24,580 KB
testcase_09 AC 28 ms
24,836 KB
testcase_10 AC 27 ms
25,476 KB
testcase_11 AC 25 ms
25,208 KB
testcase_12 AC 58 ms
24,580 KB
testcase_13 AC 63 ms
24,824 KB
testcase_14 AC 25 ms
24,452 KB
testcase_15 AC 25 ms
24,580 KB
testcase_16 AC 25 ms
24,580 KB
testcase_17 AC 24 ms
24,836 KB
testcase_18 AC 25 ms
24,836 KB
testcase_19 AC 25 ms
24,836 KB
testcase_20 AC 26 ms
24,836 KB
testcase_21 AC 103 ms
25,160 KB
testcase_22 AC 103 ms
24,836 KB
testcase_23 AC 57 ms
24,452 KB
testcase_24 AC 41 ms
24,836 KB
testcase_25 AC 67 ms
24,836 KB
testcase_26 AC 65 ms
24,836 KB
testcase_27 AC 41 ms
24,824 KB
testcase_28 AC 36 ms
25,220 KB
testcase_29 AC 102 ms
24,964 KB
testcase_30 AC 100 ms
24,836 KB
testcase_31 AC 24 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

int A[510][510];
int dx[4]={1,0,-1,0};
int dy[4]={0,1,0,-1};
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n,m;
  cin>>n>>m;
  
  if(m<2*n-1){
    cout<<"No"<<endl;
    return 0;
  }
  if(m>=n*n-1){
    cout<<"Yes"<<endl;
    return 0;
  }
  
  A[1][1]=1,A[n][n]=1;
  queue<pair<int,int>> q;
  q.push({1,1});
  int cnt=0;
  int res=m-2;
  int ma=0;
  while(!q.empty()){
    auto t=q.front();
    q.pop();
    int y=t.first,x=t.second;
    rep(i,4){
      int ny=y+dy[i],nx=x+dx[i];
      if(ny<1 || ny>n || nx<1 || nx>n) continue;
      if(A[ny][nx]>0) continue;
      cout<<ny<<" "<<nx<<endl;
      cnt++;
      string t;
      cin>>t;
      if(t=="Black"){
        A[ny][nx]=1;
        q.push({ny,nx});
        res--;
        ma=max(ma,ny+nx);
        if(2*n-ma-1>m){
          cout<<"No"<<endl;
          return 0;
        }
        if((ny==n-1 && nx==n) || (ny==n && nx==n-1)){
          cout<<"Yes"<<endl;
          return 0;
        }
      }
      else if(t=="White"){
        A[ny][nx]=2;
      }
      else if(t=="-1") return 0;
    }
    if(cnt>=3000) break;
  }
  cout<<"No"<<endl;

  return 0;
}
0