結果

問題 No.2165 Let's Play Nim!
ユーザー umezoumezo
提出日時 2022-12-16 01:53:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 1,832 bytes
コンパイル時間 2,359 ms
コンパイル使用メモリ 212,472 KB
実行使用メモリ 25,208 KB
平均クエリ数 863.56
最終ジャッジ日時 2024-11-14 18:15:54
合計ジャッジ時間 18,315 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,940 KB
testcase_01 AC 138 ms
25,196 KB
testcase_02 AC 152 ms
25,196 KB
testcase_03 AC 93 ms
25,196 KB
testcase_04 AC 27 ms
24,928 KB
testcase_05 AC 33 ms
24,940 KB
testcase_06 AC 31 ms
24,940 KB
testcase_07 AC 30 ms
24,940 KB
testcase_08 AC 101 ms
25,208 KB
testcase_09 AC 27 ms
24,580 KB
testcase_10 AC 34 ms
24,568 KB
testcase_11 AC 150 ms
24,556 KB
testcase_12 AC 129 ms
24,940 KB
testcase_13 AC 25 ms
24,940 KB
testcase_14 AC 30 ms
25,196 KB
testcase_15 AC 27 ms
24,556 KB
testcase_16 AC 123 ms
25,196 KB
testcase_17 AC 64 ms
24,556 KB
testcase_18 AC 208 ms
24,812 KB
testcase_19 AC 26 ms
24,904 KB
testcase_20 AC 29 ms
24,952 KB
testcase_21 AC 53 ms
24,964 KB
testcase_22 AC 44 ms
24,964 KB
testcase_23 AC 41 ms
24,580 KB
testcase_24 AC 38 ms
24,836 KB
testcase_25 AC 83 ms
24,580 KB
testcase_26 AC 146 ms
24,940 KB
testcase_27 AC 47 ms
24,940 KB
testcase_28 AC 69 ms
24,556 KB
testcase_29 AC 25 ms
25,196 KB
testcase_30 AC 24 ms
24,940 KB
testcase_31 AC 25 ms
24,812 KB
testcase_32 AC 97 ms
24,556 KB
evil_2_big_1.txt AC 1,691 ms
25,196 KB
evil_2_big_2.txt AC 1,821 ms
25,196 KB
evil_2_big_3.txt AC 1,670 ms
25,184 KB
evil_big_1.txt AC 1,809 ms
25,220 KB
evil_big_2.txt AC 1,862 ms
25,220 KB
evil_big_3.txt AC 1,835 ms
24,964 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:68:11: warning: 'tmp' may be used uninitialized [-Wmaybe-uninitialized]
   68 |       int tmp;
      |           ^~~
main.cpp:45:11: warning: 'tmp' may be used uninitialized [-Wmaybe-uninitialized]
   45 |       int tmp;
      |           ^~~

ソースコード

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;

set<int> G[17];
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  cin>>n;
  
  vector<int> A(n);
  int now=0;
  rep(i,n){
    cin>>A[i];
    rep(j,17){
      if(A[i]&(1<<j)) G[j].insert(i);
    }
    now^=A[i];
  }
  
  int ret;
  if(now==0){
    cout<<0<<endl;
    while(1){
      int i,k;
      cin>>i>>k;
      i--;
      now=A[i]^(A[i]-k);
      rep(j,17){
        if(A[i]&(1<<j)) G[j].erase(i);
      }
      A[i]-=k;
      rep(j,17){
        if(A[i]&(1<<j)) G[j].insert(i);
      }
      cin>>ret;
      if(ret==-1) return 0;
      
      int tmp;
      for(int j=16;j>=0;j--){
        if(now&(1<<j)){
          tmp=j;
          break;
        }
      }
      int c=*G[tmp].begin();
      cout<<c+1<<" "<<A[c]-(A[c]^now)<<endl;
      rep(j,17){
        if(A[c]&(1<<j)) G[j].erase(c);
      }
      A[c]^=now;
      rep(j,17){
        if(A[c]&(1<<j)) G[j].insert(c);
      }
      cin>>ret;
      if(ret==-1) return 0;
    }
  }
  else{
    cout<<1<<endl; 
    while(1){
      int tmp;
      for(int j=16;j>=0;j--){
        if(now&(1<<j)){
          tmp=j;
          break;
        }
      }
      int c=*G[tmp].begin();
      cout<<c+1<<" "<<A[c]-(A[c]^now)<<endl;
      rep(j,17){
        if(A[c]&(1<<j)) G[j].erase(c);
      }
      A[c]^=now;
      rep(j,17){
        if(A[c]&(1<<j)) G[j].insert(c);
      }
      cin>>ret;
      if(ret==-1) return 0;
      
      int i,k;
      cin>>i>>k;
      i--;
      now=A[i]^(A[i]-k);
      rep(j,17){
        if(A[i]&(1<<j)) G[j].erase(i);
      }
      A[i]-=k;
      rep(j,17){
        if(A[i]&(1<<j)) G[j].insert(i);
      }
      cin>>ret;
      if(ret==-1) return 0;
    }
  }
  
  return 0;
}
0