結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,150 ms
5,376 KB
testcase_01 AC 1,134 ms
5,376 KB
testcase_02 AC 1,136 ms
5,380 KB
testcase_03 AC 1,141 ms
5,376 KB
testcase_04 AC 1,150 ms
5,380 KB
testcase_05 AC 1,137 ms
5,380 KB
testcase_06 AC 1,142 ms
5,376 KB
testcase_07 AC 1,143 ms
5,380 KB
testcase_08 AC 1,151 ms
5,380 KB
testcase_09 AC 1,133 ms
5,380 KB
testcase_10 AC 1,138 ms
5,376 KB
testcase_11 AC 1,140 ms
6,148 KB
testcase_12 AC 1,137 ms
5,380 KB
testcase_13 AC 1,150 ms
5,380 KB
testcase_14 AC 1,144 ms
5,376 KB
testcase_15 AC 1,138 ms
5,376 KB
testcase_16 AC 1,134 ms
5,380 KB
testcase_17 AC 1,136 ms
5,380 KB
testcase_18 AC 1,143 ms
5,380 KB
testcase_19 AC 1,138 ms
5,384 KB
testcase_20 AC 1,137 ms
5,380 KB
testcase_21 AC 1,137 ms
5,376 KB
testcase_22 AC 1,134 ms
5,380 KB
testcase_23 AC 1,133 ms
5,384 KB
testcase_24 AC 1,137 ms
5,376 KB
testcase_25 AC 1,145 ms
5,380 KB
testcase_26 AC 1,143 ms
5,380 KB
testcase_27 AC 1,139 ms
5,380 KB
testcase_28 AC 1,144 ms
5,376 KB
testcase_29 AC 1,145 ms
5,376 KB
testcase_30 AC 1,135 ms
5,380 KB
testcase_31 AC 1,144 ms
5,376 KB
testcase_32 AC 1,137 ms
6,148 KB
testcase_33 AC 1,150 ms
5,380 KB
testcase_34 AC 1,151 ms
5,376 KB
testcase_35 AC 1,143 ms
7,424 KB
testcase_36 AC 1,147 ms
5,376 KB
testcase_37 AC 1,145 ms
6,148 KB
testcase_38 AC 1,137 ms
5,380 KB
testcase_39 AC 1,139 ms
5,376 KB
testcase_40 AC 1,139 ms
5,380 KB
testcase_41 AC 1,135 ms
5,384 KB
testcase_42 AC 1,139 ms
5,380 KB
testcase_43 AC 1,141 ms
5,380 KB
testcase_44 AC 1,145 ms
5,380 KB
testcase_45 AC 1,148 ms
5,380 KB
testcase_46 AC 1,146 ms
5,376 KB
testcase_47 AC 1,138 ms
5,380 KB
testcase_48 AC 1,137 ms
5,384 KB
testcase_49 AC 1,149 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define all(x) (x).begin(),(x).end()
#define INLINE inline __attribute__ ((always_inline))

constexpr double TIME_OUT = 1.0;
constexpr double CYCLES_PER_SEC = 2.6 * 1e9;

INLINE int64_t getCycle() {
    uint32_t low, high;
    __asm__ volatile ("rdtsc" : "=a" (low), "=d" (high));
    return ((int64_t)low) | ((int64_t)high << 32);
}

INLINE static double getTime() { return getCycle() / CYCLES_PER_SEC; }

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]);
    }
    
    random_device seed_gen;
    mt19937 engine(seed_gen());
    int score = 0;
    vector<int> state(n);
    iota(all(state), 0);
    int bestScore = 0;
    vector<int> bestState(m);
    double startTime = getTime();
    while (TIME_OUT > getTime() - startTime) {
        score = 0;
        shuffle(all(state), engine);
        for (int i = 0; i < m; i++) {
            score ^= a[state[i]];
        }
        if (bestScore < score) {
            bestScore = score;
            for (int i = 0; i < m; i++) {
                bestState[i] = state[i];
            }
        }
    }
    
    for (int i = 0; i < m; i++) {
        printf("%d%c", a[bestState[i]], (i + 1 == n ? '\n' : ' '));
    }
    
    return 0;
}
0