結果

問題 No.2977 Kth Xor Pair
ユーザー loop0919loop0919
提出日時 2024-12-01 01:44:35
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 536 ms / 3,000 ms
コード長 1,058 bytes
コンパイル時間 1,248 ms
コンパイル使用メモリ 114,200 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-01 01:44:51
合計ジャッジ時間 14,811 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 5 ms
6,816 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 4 ms
6,816 KB
testcase_05 AC 5 ms
6,820 KB
testcase_06 AC 4 ms
6,820 KB
testcase_07 AC 268 ms
6,816 KB
testcase_08 AC 438 ms
6,820 KB
testcase_09 AC 436 ms
6,820 KB
testcase_10 AC 426 ms
6,816 KB
testcase_11 AC 458 ms
6,816 KB
testcase_12 AC 425 ms
6,820 KB
testcase_13 AC 448 ms
6,816 KB
testcase_14 AC 281 ms
6,816 KB
testcase_15 AC 387 ms
6,820 KB
testcase_16 AC 477 ms
6,816 KB
testcase_17 AC 497 ms
6,816 KB
testcase_18 AC 468 ms
6,816 KB
testcase_19 AC 470 ms
6,820 KB
testcase_20 AC 465 ms
6,820 KB
testcase_21 AC 488 ms
6,816 KB
testcase_22 AC 492 ms
6,816 KB
testcase_23 AC 536 ms
6,820 KB
testcase_24 AC 505 ms
6,816 KB
testcase_25 AC 471 ms
6,820 KB
testcase_26 AC 505 ms
6,820 KB
testcase_27 AC 328 ms
6,816 KB
testcase_28 AC 357 ms
6,816 KB
testcase_29 AC 298 ms
6,820 KB
testcase_30 AC 318 ms
6,816 KB
testcase_31 AC 313 ms
6,820 KB
testcase_32 AC 316 ms
6,816 KB
testcase_33 AC 289 ms
6,820 KB
testcase_34 AC 292 ms
6,816 KB
testcase_35 AC 292 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

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;
    long long 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