結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
25,196 KB
testcase_01 AC 134 ms
24,812 KB
testcase_02 AC 144 ms
25,196 KB
testcase_03 AC 91 ms
24,812 KB
testcase_04 AC 23 ms
25,452 KB
testcase_05 AC 30 ms
24,556 KB
testcase_06 AC 30 ms
24,940 KB
testcase_07 AC 29 ms
24,556 KB
testcase_08 AC 99 ms
24,824 KB
testcase_09 AC 26 ms
25,208 KB
testcase_10 AC 33 ms
24,568 KB
testcase_11 AC 149 ms
24,812 KB
testcase_12 AC 124 ms
24,940 KB
testcase_13 AC 24 ms
24,812 KB
testcase_14 AC 29 ms
24,556 KB
testcase_15 AC 25 ms
25,184 KB
testcase_16 AC 119 ms
25,196 KB
testcase_17 AC 61 ms
24,556 KB
testcase_18 AC 203 ms
24,940 KB
testcase_19 AC 23 ms
25,208 KB
testcase_20 AC 28 ms
24,952 KB
testcase_21 AC 50 ms
24,964 KB
testcase_22 AC 42 ms
25,220 KB
testcase_23 AC 41 ms
24,580 KB
testcase_24 AC 36 ms
24,964 KB
testcase_25 AC 80 ms
24,836 KB
testcase_26 AC 143 ms
24,812 KB
testcase_27 AC 45 ms
24,812 KB
testcase_28 AC 67 ms
24,940 KB
testcase_29 AC 25 ms
24,940 KB
testcase_30 AC 23 ms
25,324 KB
testcase_31 AC 23 ms
25,196 KB
testcase_32 AC 95 ms
24,556 KB
evil_2_big_1.txt AC 1,646 ms
24,812 KB
evil_2_big_2.txt AC 1,822 ms
24,812 KB
evil_2_big_3.txt AC 1,614 ms
24,940 KB
evil_big_1.txt AC 1,766 ms
24,836 KB
evil_big_2.txt AC 1,866 ms
24,964 KB
evil_big_3.txt AC 1,815 ms
25,220 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