結果

問題 No.5001 排他的論理和でランニング
ユーザー masaktmasakt
提出日時 2018-03-17 00:11:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,093 bytes
コンパイル時間 1,581 ms
実行使用メモリ 7,736 KB
スコア 45,821,165
最終ジャッジ日時 2020-03-12 19:44:52
ジャッジサーバーID
(参考情報)
judge10 /
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,494 ms
7,736 KB
testcase_01 AC 1,465 ms
5,376 KB
testcase_02 AC 1,467 ms
5,384 KB
testcase_03 AC 1,486 ms
6,144 KB
testcase_04 TLE -
testcase_05 AC 1,474 ms
5,380 KB
testcase_06 AC 1,474 ms
5,380 KB
testcase_07 AC 1,477 ms
5,384 KB
testcase_08 TLE -
testcase_09 AC 1,463 ms
5,380 KB
testcase_10 AC 1,478 ms
5,472 KB
testcase_11 AC 1,476 ms
6,064 KB
testcase_12 AC 1,468 ms
5,380 KB
testcase_13 TLE -
testcase_14 AC 1,481 ms
6,872 KB
testcase_15 AC 1,471 ms
5,380 KB
testcase_16 AC 1,467 ms
5,380 KB
testcase_17 AC 1,470 ms
5,376 KB
testcase_18 AC 1,480 ms
6,624 KB
testcase_19 AC 1,472 ms
5,380 KB
testcase_20 AC 1,468 ms
5,380 KB
testcase_21 AC 1,475 ms
5,380 KB
testcase_22 AC 1,464 ms
5,380 KB
testcase_23 AC 1,463 ms
5,376 KB
testcase_24 AC 1,468 ms
5,380 KB
testcase_25 AC 1,476 ms
5,380 KB
testcase_26 AC 1,473 ms
5,380 KB
testcase_27 AC 1,469 ms
5,380 KB
testcase_28 AC 1,482 ms
6,272 KB
testcase_29 AC 1,484 ms
6,032 KB
testcase_30 AC 1,466 ms
5,376 KB
testcase_31 AC 1,481 ms
6,932 KB
testcase_32 AC 1,470 ms
5,376 KB
testcase_33 TLE -
testcase_34 AC 1,497 ms
0 KB
testcase_35 AC 1,481 ms
6,332 KB
testcase_36 AC 1,494 ms
7,428 KB
testcase_37 AC 1,478 ms
5,472 KB
testcase_38 AC 1,471 ms
5,380 KB
testcase_39 AC 1,477 ms
5,892 KB
testcase_40 AC 1,475 ms
7,424 KB
testcase_41 AC 1,465 ms
5,380 KB
testcase_42 AC 1,475 ms
5,804 KB
testcase_43 AC 1,481 ms
5,940 KB
testcase_44 AC 1,489 ms
6,676 KB
testcase_45 AC 1,493 ms
7,080 KB
testcase_46 AC 1,477 ms
5,376 KB
testcase_47 AC 1,474 ms
5,376 KB
testcase_48 AC 1,468 ms
5,380 KB
testcase_49 AC 1,493 ms
0 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define all(x) (x).begin(),(x).end()
#define debug(...) fprintf(stderr, __VA_ARGS__),fflush(stderr)
#define INLINE inline __attribute__ ((always_inline))

using ll = long long;
using ull = unsigned long long;
using pll = pair<ll, ll>;
using mt = tuple<ll, ll, ll, ll, ll>;
using vll = vector<ll>;
using vpll = vector<pll>;
using vmt = vector<mt>;

constexpr double TIME_OUT = 1.2;
constexpr double CYCLES_PER_SEC = 2.8 * 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; }

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

INLINE static double getRand() { return (double) xor128() / (1LL << 32); }

int main(int argc, char* argv[], char* envp[]) {
    ll n, m;
    scanf("%lld %lld", &n, &m);
    vll a(n);
    for (int i = 0; i < n; i++) {
        scanf("%lld", &a[i]);
    }
    
    int bestScore = 0;
    set<int> bestState;
    int iter = 0;
    double startTime = getTime();
    while (TIME_OUT > getTime() - startTime) {
        iter++;
        int score = 0;
        set<int> used;
        int remain = m;
        while (0 < remain) {
            int idx;
            while (true) {
                idx = xor128() % n;
                if (0 == used.count(idx)) {
                    used.insert(idx);
                    break;
                }
            }
            score ^= a[idx];
            remain--;
        }
        if (bestScore < score) {
            bestScore = score;
            bestState = used;
        }
    }
    
    vll ans(all(bestState));
    for (int i = 0; i < m; i++) {
        printf("%lld%c", a[ans[i]], (i + 1 == n ? '\n' : ' '));
    }
    
    debug("time:%f iter:%d score:%d\n", getTime() - startTime, iter, bestScore);
    
    return 0;
}
0