結果

問題 No.5001 排他的論理和でランニング
ユーザー どららどらら
提出日時 2018-03-17 02:39:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 435 ms / 1,500 ms
コード長 1,912 bytes
コンパイル時間 1,502 ms
実行使用メモリ 7,428 KB
スコア 47,493,316
最終ジャッジ日時 2020-03-12 19:53:32
ジャッジサーバーID
(参考情報)
judge7 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 435 ms
5,376 KB
testcase_01 AC 49 ms
5,380 KB
testcase_02 AC 100 ms
5,376 KB
testcase_03 AC 139 ms
5,376 KB
testcase_04 AC 295 ms
5,380 KB
testcase_05 AC 136 ms
5,380 KB
testcase_06 AC 204 ms
5,384 KB
testcase_07 AC 260 ms
5,384 KB
testcase_08 AC 391 ms
7,428 KB
testcase_09 AC 5 ms
5,384 KB
testcase_10 AC 118 ms
5,380 KB
testcase_11 AC 163 ms
5,380 KB
testcase_12 AC 88 ms
5,380 KB
testcase_13 AC 341 ms
5,380 KB
testcase_14 AC 199 ms
5,380 KB
testcase_15 AC 125 ms
5,376 KB
testcase_16 AC 60 ms
5,380 KB
testcase_17 AC 89 ms
5,376 KB
testcase_18 AC 220 ms
5,380 KB
testcase_19 AC 118 ms
5,376 KB
testcase_20 AC 85 ms
5,380 KB
testcase_21 AC 81 ms
5,380 KB
testcase_22 AC 37 ms
5,380 KB
testcase_23 AC 26 ms
5,380 KB
testcase_24 AC 110 ms
5,376 KB
testcase_25 AC 240 ms
5,376 KB
testcase_26 AC 231 ms
5,380 KB
testcase_27 AC 134 ms
5,380 KB
testcase_28 AC 223 ms
5,380 KB
testcase_29 AC 269 ms
5,380 KB
testcase_30 AC 44 ms
5,380 KB
testcase_31 AC 165 ms
5,380 KB
testcase_32 AC 124 ms
5,376 KB
testcase_33 AC 422 ms
5,380 KB
testcase_34 AC 397 ms
6,148 KB
testcase_35 AC 232 ms
5,380 KB
testcase_36 AC 302 ms
5,380 KB
testcase_37 AC 174 ms
5,380 KB
testcase_38 AC 113 ms
5,380 KB
testcase_39 AC 147 ms
5,376 KB
testcase_40 AC 163 ms
5,380 KB
testcase_41 AC 50 ms
5,380 KB
testcase_42 AC 198 ms
5,376 KB
testcase_43 AC 198 ms
5,380 KB
testcase_44 AC 263 ms
5,380 KB
testcase_45 AC 315 ms
5,376 KB
testcase_46 AC 243 ms
5,376 KB
testcase_47 AC 126 ms
5,376 KB
testcase_48 AC 114 ms
5,376 KB
testcase_49 AC 216 ms
5,384 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));
}

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;
  int score = 0;
  rep(i,M){
    ret.push_back(v[N-1-i]);
    score ^= v[N-1-i];
  }
  rep(i,M){
    v.pop_back();
  }

  rep(i,100){
    for(int b=21; b>=0; b--){
      int x = 1<<(b+1);

      if(((score>>b)&1) == 0){
        vector<int> p, q;
        rep(i,ret.size()){
          if(x > ret[i] && ((ret[i]>>b)&1) == 1){
            p.push_back(i);
          }
        }
        if(p.size() > 0){
          rep(i,v.size()){
            if(x > v[i] && ((v[i]>>b)&1) == 0){
              q.push_back(i);
            }
          }
        }else{
          rep(i,ret.size()){
            if(x > ret[i] && ((ret[i]>>b)&1) == 0){
              p.push_back(i);
            }
          }
          rep(i,v.size()){
            if(x > v[i] && ((v[i]>>b)&1) == 1){
              q.push_back(i);
            }
          }
        }
        if(p.size()>0 && q.size()>0){
          int pi = p[xor128()%(p.size())];
          int qi = q[xor128()%(q.size())];
          
          score ^= ret[pi];
          score ^= v[qi];
          swap(ret[pi],v[qi]);
        }
      }
    }
  }

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

0