結果

問題 No.2165 Let's Play Nim!
ユーザー Nzt3Nzt3
提出日時 2022-12-18 12:43:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 1,085 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 210,856 KB
実行使用メモリ 25,580 KB
平均クエリ数 863.56
最終ジャッジ日時 2024-04-29 01:25:11
合計ジャッジ時間 18,702 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
25,580 KB
testcase_01 AC 144 ms
24,556 KB
testcase_02 AC 148 ms
25,452 KB
testcase_03 AC 95 ms
24,812 KB
testcase_04 AC 25 ms
25,196 KB
testcase_05 AC 31 ms
24,880 KB
testcase_06 AC 30 ms
24,556 KB
testcase_07 AC 29 ms
24,812 KB
testcase_08 AC 101 ms
24,824 KB
testcase_09 AC 25 ms
25,464 KB
testcase_10 AC 32 ms
25,196 KB
testcase_11 AC 148 ms
24,556 KB
testcase_12 AC 129 ms
24,940 KB
testcase_13 AC 24 ms
25,196 KB
testcase_14 AC 28 ms
24,812 KB
testcase_15 AC 25 ms
25,196 KB
testcase_16 AC 125 ms
24,556 KB
testcase_17 AC 63 ms
24,812 KB
testcase_18 AC 213 ms
24,812 KB
testcase_19 AC 24 ms
24,568 KB
testcase_20 AC 28 ms
24,556 KB
testcase_21 AC 52 ms
24,452 KB
testcase_22 AC 44 ms
24,836 KB
testcase_23 AC 41 ms
25,220 KB
testcase_24 AC 39 ms
24,964 KB
testcase_25 AC 82 ms
24,836 KB
testcase_26 AC 147 ms
24,812 KB
testcase_27 AC 45 ms
24,556 KB
testcase_28 AC 69 ms
24,556 KB
testcase_29 AC 23 ms
25,184 KB
testcase_30 AC 22 ms
24,812 KB
testcase_31 AC 22 ms
25,196 KB
testcase_32 AC 95 ms
24,812 KB
evil_2_big_1.txt AC 1,773 ms
25,196 KB
evil_2_big_2.txt AC 1,897 ms
24,556 KB
evil_2_big_3.txt AC 1,725 ms
24,812 KB
evil_big_1.txt AC 1,865 ms
24,580 KB
evil_big_2.txt AC 1,973 ms
25,476 KB
evil_big_3.txt AC 1,936 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector<int>A(N);
  for(auto &i:A)cin>>i;
  int t=0;
  for(int i:A)t^=i;
  vector<set<int>>b(17);
  for(int i=0;i<N;i++){
    for(int j=0;j<17;j++){
      if(A[i]>>j&1)b[j].insert(i);
    }
  }
  int p=0;
  if(t){
    cout<<1<<endl;
    p=1;
  }else{
    cout<<0<<endl;
  }
  int ret=0;
  while(ret!=-1){
    if(p){
      int k=0;
      for(int i=0;i<17;i++){
        if(t>>i&1)k=i;
      }
      int I=*b[k].begin(),K=A[I]-(A[I]^t);
      for(int i=0;i<17;i++){
        b[i].erase(I);
      }
      t^=A[I];
      A[I]-=K;
      t^=A[I];
      for(int i=0;i<17;i++){
        if(A[I]>>i&1)b[i].insert(I);
      }
      cout<<I+1<<' '<<K<<endl;
    }else{
      int I,K;
      cin>>I>>K;
      --I;
      for(int i=0;i<17;i++){
        b[i].erase(I);
      }
      t^=A[I];
      A[I]-=K;
      t^=A[I];
      for(int i=0;i<17;i++){
        if(A[I]>>i&1)b[i].insert(I);
      }
    }
    p=1-p;
    cin>>ret;
    //for(int i:A)cout<<i<<' ';cout<<endl;
  }
}
0