結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 205 ms
5,380 KB
testcase_01 AC 20 ms
5,376 KB
testcase_02 AC 46 ms
5,380 KB
testcase_03 AC 82 ms
5,376 KB
testcase_04 AC 250 ms
5,376 KB
testcase_05 AC 80 ms
5,380 KB
testcase_06 AC 66 ms
5,376 KB
testcase_07 AC 107 ms
5,380 KB
testcase_08 AC 113 ms
5,380 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 30 ms
5,380 KB
testcase_11 AC 94 ms
5,376 KB
testcase_12 AC 34 ms
5,376 KB
testcase_13 AC 193 ms
5,376 KB
testcase_14 AC 135 ms
5,384 KB
testcase_15 AC 74 ms
5,380 KB
testcase_16 AC 31 ms
6,148 KB
testcase_17 AC 51 ms
5,380 KB
testcase_18 AC 128 ms
6,148 KB
testcase_19 AC 54 ms
5,376 KB
testcase_20 AC 45 ms
5,376 KB
testcase_21 AC 42 ms
5,376 KB
testcase_22 AC 14 ms
5,380 KB
testcase_23 AC 13 ms
5,376 KB
testcase_24 AC 36 ms
5,380 KB
testcase_25 AC 79 ms
5,380 KB
testcase_26 AC 71 ms
5,376 KB
testcase_27 AC 40 ms
5,380 KB
testcase_28 AC 154 ms
5,376 KB
testcase_29 AC 145 ms
5,376 KB
testcase_30 AC 26 ms
5,384 KB
testcase_31 AC 105 ms
5,376 KB
testcase_32 AC 66 ms
5,376 KB
testcase_33 AC 201 ms
5,380 KB
testcase_34 AC 212 ms
5,384 KB
testcase_35 AC 117 ms
5,380 KB
testcase_36 AC 143 ms
5,376 KB
testcase_37 AC 112 ms
5,376 KB
testcase_38 AC 47 ms
5,376 KB
testcase_39 AC 75 ms
5,376 KB
testcase_40 AC 75 ms
7,424 KB
testcase_41 AC 20 ms
5,376 KB
testcase_42 AC 111 ms
5,380 KB
testcase_43 AC 98 ms
5,376 KB
testcase_44 AC 135 ms
6,148 KB
testcase_45 AC 170 ms
5,380 KB
testcase_46 AC 103 ms
5,376 KB
testcase_47 AC 79 ms
5,376 KB
testcase_48 AC 48 ms
5,380 KB
testcase_49 AC 169 ms
5,376 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;

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

  vector<int> v;
  rep(i,N){
    //v.push_back(1+i);
    int a;
    cin >> a;
    v.push_back(a);
  }
  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){
        int p = -1, q = -1;
        rep(i,ret.size()){
          if(x > ret[i] && ((ret[i]>>b)&1) == 1){
            p = i;
            break;
          }
        }
        if(p >= 0){
          rep(i,v.size()){
            if(x > v[i] && ((v[i]>>b)&1) == 0){
              q = i;
              break;
            }
          }
        }else{
          rep(i,ret.size()){
            if(x > ret[i] && ((ret[i]>>b)&1) == 0){
              p = i;
              break;
            }
          }
          rep(i,v.size()){
            if(x > v[i] && ((v[i]>>b)&1) == 1){
              q = i;
              break;
            }
          }
        }
        if(p>=0 && q>=0){
          score ^= ret[p];
          score ^= v[q];
          swap(ret[p],v[q]);
        }
      }
    }
  }

  cerr << score << endl;

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