結果

問題 No.5001 排他的論理和でランニング
ユーザー どららどらら
提出日時 2018-03-17 13:07:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 291 ms / 1,500 ms
コード長 2,351 bytes
コンパイル時間 1,504 ms
実行使用メモリ 7,484 KB
スコア 48,053,379
最終ジャッジ日時 2020-03-12 20:05:55
ジャッジサーバーID
(参考情報)
judge10 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
5,376 KB
testcase_01 AC 42 ms
5,376 KB
testcase_02 AC 67 ms
5,380 KB
testcase_03 AC 137 ms
5,380 KB
testcase_04 AC 291 ms
5,380 KB
testcase_05 AC 97 ms
5,380 KB
testcase_06 AC 184 ms
5,380 KB
testcase_07 AC 205 ms
5,380 KB
testcase_08 AC 240 ms
5,380 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 76 ms
5,376 KB
testcase_11 AC 111 ms
5,376 KB
testcase_12 AC 90 ms
5,380 KB
testcase_13 AC 246 ms
5,384 KB
testcase_14 AC 155 ms
5,376 KB
testcase_15 AC 98 ms
5,380 KB
testcase_16 AC 41 ms
5,380 KB
testcase_17 AC 58 ms
5,380 KB
testcase_18 AC 146 ms
5,376 KB
testcase_19 AC 107 ms
5,380 KB
testcase_20 AC 77 ms
5,380 KB
testcase_21 AC 65 ms
5,376 KB
testcase_22 AC 29 ms
5,376 KB
testcase_23 AC 21 ms
5,376 KB
testcase_24 AC 112 ms
5,380 KB
testcase_25 AC 258 ms
5,380 KB
testcase_26 AC 219 ms
5,376 KB
testcase_27 AC 134 ms
5,380 KB
testcase_28 AC 192 ms
5,376 KB
testcase_29 AC 234 ms
5,376 KB
testcase_30 AC 33 ms
5,376 KB
testcase_31 AC 173 ms
5,376 KB
testcase_32 AC 74 ms
5,380 KB
testcase_33 AC 265 ms
5,380 KB
testcase_34 AC 280 ms
5,376 KB
testcase_35 AC 183 ms
5,376 KB
testcase_36 AC 270 ms
5,376 KB
testcase_37 AC 204 ms
5,380 KB
testcase_38 AC 76 ms
5,380 KB
testcase_39 AC 97 ms
7,484 KB
testcase_40 AC 137 ms
5,376 KB
testcase_41 AC 31 ms
5,380 KB
testcase_42 AC 109 ms
5,380 KB
testcase_43 AC 128 ms
5,376 KB
testcase_44 AC 238 ms
5,376 KB
testcase_45 AC 262 ms
5,376 KB
testcase_46 AC 263 ms
5,380 KB
testcase_47 AC 109 ms
5,380 KB
testcase_48 AC 80 ms
6,148 KB
testcase_49 AC 195 ms
5,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;

unsigned int xor128(){
  static unsigned int x=123456789, y=362436069, z=521288629, w=88675123;
  unsigned int t;
  t=(x^(x<<11));
  x=y; y=z; z=w;
  return w=(w^(w>>19))^(t^(t>>8));
}

vector<int> solve(const vector<int>& v, int N, int M){
  bitset<100005> w;
  int score = 0;
  rep(i,M){
    w[i] = 1;
    score ^= v[i];
  }

  rep(t,1000){
    /*
    for(int i=21; i>=0; i--){
      if((score>>i)&1) cout << 1;
      else cout << 0;
    }
    cout << endl;
    */
    int br = xor128()%22;
    int th = 1<<(br+1);

    vector<int> p1, p0;
    vector<int> q1, q0;
    rep(i,N){
      if(v[i]>=th) continue;
      if(w[i]){
        if((v[i]>>br)&1) p1.push_back(i);
        else p0.push_back(i);
      }else{
        if((v[i]>>br)&1) q1.push_back(i);
        else q0.push_back(i);
      }
    }
    
    if((score>>br)&1){
      if(p1.size()>1 && q0.size()>1){
        int t_score = score;
        t_score ^= v[p1[0]];
        t_score ^= v[p1[1]];
        t_score ^= v[q0[0]];
        t_score ^= v[q0[1]];
        if(score <= t_score){
          w[p1[0]] = 0;
          w[p1[1]] = 0;
          w[q0[0]] = 1;
          w[q0[1]] = 1;
          score ^= v[p1[0]];
          score ^= v[p1[1]];
          score ^= v[q0[0]];
          score ^= v[q0[1]];
        }
      }  
    }else{
      if(p1.size()>0 && q0.size()>0){
        w[p1[0]] = 0;
        w[q0[0]] = 1;
        score ^= v[p1[0]];
        score ^= v[q0[0]];
      }
      else if(p0.size()>0 && q1.size()>0){
        w[p0[0]] = 0;
        w[q1[0]] = 1;
        score ^= v[p0[0]];
        score ^= v[q1[0]];
      }
    }
  }

  cerr << score << endl;
  vector<int> ret;
  rep(i,w.size()){
    if(w[i]) ret.push_back(v[i]);
  }
  return ret;
}


int main(){
  int N, M;
  cin >> N >> M;

  vector<int> v;
  rep(i,N){
#ifdef LOCAL
    v.push_back(1+i);
#else
    int a;
    cin >> a;
    v.push_back(a);
#endif
  }
  sort(ALLOF(v));


  vector<int> ret = solve(v, N, M);

#ifndef LOCAL
  rep(i,ret.size()){
    if(i>0) cout << " ";
    cout << ret[i];
  }
  cout << endl;
#endif
  return 0;
}

0