結果

問題 No.2165 Let's Play Nim!
ユーザー Nzt3Nzt3
提出日時 2022-12-18 12:38:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,084 bytes
コンパイル時間 2,353 ms
コンパイル使用メモリ 210,724 KB
実行使用メモリ 25,580 KB
平均クエリ数 3.31
最終ジャッジ日時 2024-04-29 01:24:52
合計ジャッジ時間 6,569 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,196 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 27 ms
24,812 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 28 ms
25,208 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
evil_2_big_1.txt -- -
evil_2_big_2.txt -- -
evil_2_big_3.txt -- -
evil_big_1.txt -- -
evil_big_2.txt -- -
evil_big_3.txt -- -
権限があれば一括ダウンロードができます

ソースコード

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<N;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