結果

問題 No.2977 Kth Xor Pair
ユーザー loop0919loop0919
提出日時 2024-12-01 01:40:49
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,044 bytes
コンパイル時間 1,211 ms
コンパイル使用メモリ 115,092 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-01 01:42:01
合計ジャッジ時間 11,448 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 5 ms
6,820 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 5 ms
6,820 KB
testcase_05 AC 5 ms
6,816 KB
testcase_06 AC 5 ms
6,816 KB
testcase_07 WA -
testcase_08 AC 547 ms
6,820 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 607 ms
6,816 KB
testcase_23 AC 579 ms
6,820 KB
testcase_24 AC 611 ms
6,816 KB
testcase_25 WA -
testcase_26 AC 578 ms
6,816 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>

using namespace std;

// A の中で l 以上 r 以下の要素の個数を数える関数
int count(const vector<int>& A, int l, int r) {
    auto right = upper_bound(A.begin(), A.end(), r);
    auto left = lower_bound(A.begin(), A.end(), l);
    return right - left;
}

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

    vector<int> A(N);
    for (int i = 0; i < N; i++) {
        cin >> A[i];
    }

    sort(A.begin(), A.end()); // ソート

    long long ans = 0;
    long long X = 2 * K + N;

    for (int i = 30; i >= 0; --i) {
        long long left = ans;
        long long right = ans | ((1LL << i) - 1);

        long long cnt = 0;

        for (int a : A) {
            long long l = left ^ (a & ~((1LL << i) - 1));
            long long r = right ^ (a & ~((1LL << i) - 1));
            cnt += count(A, l, r);
        }

        if (cnt < X) {
            ans |= 1LL << i;
            X -= cnt;
        }
    }

    cout << ans << endl;

    return 0;
}
0