結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
5,376 KB
testcase_01 AC 306 ms
5,380 KB
testcase_02 AC 303 ms
7,420 KB
testcase_03 AC 307 ms
5,380 KB
testcase_04 AC 323 ms
5,380 KB
testcase_05 AC 309 ms
5,376 KB
testcase_06 AC 304 ms
5,380 KB
testcase_07 AC 307 ms
7,428 KB
testcase_08 AC 324 ms
5,380 KB
testcase_09 AC 304 ms
5,380 KB
testcase_10 AC 308 ms
5,380 KB
testcase_11 AC 307 ms
5,380 KB
testcase_12 AC 303 ms
5,376 KB
testcase_13 AC 318 ms
5,376 KB
testcase_14 AC 310 ms
5,376 KB
testcase_15 AC 304 ms
5,376 KB
testcase_16 AC 306 ms
5,376 KB
testcase_17 AC 305 ms
5,380 KB
testcase_18 AC 311 ms
5,384 KB
testcase_19 AC 303 ms
5,376 KB
testcase_20 AC 303 ms
5,380 KB
testcase_21 AC 305 ms
5,380 KB
testcase_22 AC 309 ms
5,380 KB
testcase_23 AC 305 ms
5,380 KB
testcase_24 AC 305 ms
5,376 KB
testcase_25 AC 305 ms
5,376 KB
testcase_26 AC 304 ms
5,380 KB
testcase_27 AC 304 ms
5,376 KB
testcase_28 AC 307 ms
5,376 KB
testcase_29 AC 306 ms
5,380 KB
testcase_30 AC 304 ms
5,380 KB
testcase_31 AC 312 ms
5,376 KB
testcase_32 AC 304 ms
5,376 KB
testcase_33 AC 314 ms
5,380 KB
testcase_34 AC 324 ms
5,380 KB
testcase_35 AC 305 ms
5,376 KB
testcase_36 AC 324 ms
5,380 KB
testcase_37 AC 305 ms
5,376 KB
testcase_38 AC 305 ms
5,380 KB
testcase_39 AC 311 ms
5,376 KB
testcase_40 AC 305 ms
5,376 KB
testcase_41 AC 305 ms
5,376 KB
testcase_42 AC 305 ms
7,420 KB
testcase_43 AC 307 ms
5,380 KB
testcase_44 AC 307 ms
5,376 KB
testcase_45 AC 307 ms
5,380 KB
testcase_46 AC 314 ms
5,380 KB
testcase_47 AC 305 ms
5,384 KB
testcase_48 AC 307 ms
5,380 KB
testcase_49 AC 313 ms
5,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <time.h>
#include <vector>
#include <random>
#include <algorithm>

using namespace std;

mt19937 mt(123);

// [l,r]
int randint(int l, int r) {
  return uniform_int_distribution<int>(l, r)(mt);
}

int main() {
  int n, m;
  scanf("%d %d", &n, &m);

  vector<int> a(n); 
  for (int i = 0; i < n; i++) {
    scanf("%d", &a[i]);
  }

  pair<int, vector<int>> mx;  

  clock_t start = clock();
  while (double(clock() - start) / CLOCKS_PER_SEC < 0.3) {
    vector<int> p;
    vector<bool> used(n);
    int x = 0;
    while (p.size() < m) {
      int r = randint(0, n - 1);
      if (!used[r]) {
        used[r] = true;
        p.push_back(r);
        x ^= a[r];
      }
    }
    mx = max(mx, make_pair(x, p));
  }

  for (int i = 0; i < m; i++) {
    if (i > 0) putchar(' ');
    printf("%d", a[mx.second[i]]);
  }
  puts("");
}
0