結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
25,196 KB
testcase_01 AC 130 ms
25,184 KB
testcase_02 AC 133 ms
25,196 KB
testcase_03 AC 86 ms
24,940 KB
testcase_04 AC 22 ms
25,196 KB
testcase_05 AC 27 ms
24,812 KB
testcase_06 AC 27 ms
24,812 KB
testcase_07 AC 26 ms
24,812 KB
testcase_08 AC 91 ms
25,208 KB
testcase_09 AC 23 ms
25,208 KB
testcase_10 AC 36 ms
24,568 KB
testcase_11 AC 147 ms
24,940 KB
testcase_12 AC 129 ms
24,940 KB
testcase_13 AC 26 ms
25,196 KB
testcase_14 AC 30 ms
25,196 KB
testcase_15 AC 24 ms
24,940 KB
testcase_16 AC 112 ms
25,184 KB
testcase_17 AC 58 ms
25,196 KB
testcase_18 AC 212 ms
24,940 KB
testcase_19 AC 26 ms
24,824 KB
testcase_20 AC 29 ms
24,952 KB
testcase_21 AC 53 ms
25,220 KB
testcase_22 AC 45 ms
24,820 KB
testcase_23 AC 43 ms
24,836 KB
testcase_24 AC 40 ms
25,220 KB
testcase_25 AC 79 ms
24,832 KB
testcase_26 AC 134 ms
24,556 KB
testcase_27 AC 42 ms
24,556 KB
testcase_28 AC 63 ms
24,556 KB
testcase_29 AC 23 ms
24,812 KB
testcase_30 AC 20 ms
25,196 KB
testcase_31 AC 21 ms
24,812 KB
testcase_32 AC 90 ms
24,556 KB
evil_2_big_1.txt AC 1,597 ms
24,556 KB
evil_2_big_2.txt AC 1,786 ms
25,184 KB
evil_2_big_3.txt AC 1,575 ms
25,196 KB
evil_big_1.txt AC 1,730 ms
25,220 KB
evil_big_2.txt AC 1,755 ms
24,836 KB
evil_big_3.txt AC 1,869 ms
24,580 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