結果

問題 No.2977 Kth Xor Pair
ユーザー 👑 NachiaNachia
提出日時 2024-12-01 00:34:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 340 ms / 3,000 ms
コード長 1,452 bytes
コンパイル時間 1,025 ms
コンパイル使用メモリ 84,204 KB
実行使用メモリ 9,528 KB
最終ジャッジ日時 2024-12-01 00:34:14
合計ジャッジ時間 9,641 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 4 ms
6,816 KB
testcase_07 AC 182 ms
6,816 KB
testcase_08 AC 296 ms
9,088 KB
testcase_09 AC 277 ms
8,704 KB
testcase_10 AC 306 ms
8,872 KB
testcase_11 AC 286 ms
8,992 KB
testcase_12 AC 277 ms
8,868 KB
testcase_13 AC 294 ms
9,292 KB
testcase_14 AC 173 ms
6,820 KB
testcase_15 AC 282 ms
8,576 KB
testcase_16 AC 311 ms
9,528 KB
testcase_17 AC 299 ms
9,520 KB
testcase_18 AC 300 ms
9,524 KB
testcase_19 AC 337 ms
9,396 KB
testcase_20 AC 305 ms
9,396 KB
testcase_21 AC 309 ms
9,396 KB
testcase_22 AC 312 ms
9,524 KB
testcase_23 AC 313 ms
9,524 KB
testcase_24 AC 319 ms
9,396 KB
testcase_25 AC 298 ms
9,396 KB
testcase_26 AC 340 ms
9,524 KB
testcase_27 AC 170 ms
9,396 KB
testcase_28 AC 173 ms
9,400 KB
testcase_29 AC 157 ms
9,400 KB
testcase_30 AC 168 ms
9,524 KB
testcase_31 AC 165 ms
9,400 KB
testcase_32 AC 152 ms
9,520 KB
testcase_33 AC 157 ms
9,400 KB
testcase_34 AC 148 ms
9,400 KB
testcase_35 AC 157 ms
9,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifdef NACHIA
#define _GLIBCXX_DEBUG
#else
#define NDEBUG
#endif
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(int i=0; i<int(n); i++)
const i64 INF = 1001001001001001001;
template<typename A> void chmin(A& l, const A& r){ if(r < l) l = r; }
template<typename A> void chmax(A& l, const A& r){ if(l < r) l = r; }
using namespace std;
#include <atcoder/modint>
using Modint = atcoder::static_modint<998244353>;

void testcase(){
    i64 N; cin >> N;
    i64 K; cin >> K;
    K *= 2; K += N;
    vector<i64> A(N); rep(i,N) cin >> A[i];
    sort(A.begin(), A.end());
    vector<i64> L(N), R(N,N);
    i64 ans = 0;
    for(i64 b=29; b>=0; b--){
        vector<i64> M(N);
        rep(i,N) M[i] = lower_bound(A.begin(), A.end(),
            ((A[i] ^ ans) & ~((1ll << b) - 1)) | (1ll << b)) - A.begin();
        i64 k = 0;
        rep(i,N){
            if(A[i] & (1ll << b)) k += R[i] - M[i];
            else k += M[i] - L[i];
        }
        //cout << "ans = " << ans << " , k = " << k << endl;
        if(k < K){
            rep(i,N) ((A[i] & (1ll << b)) ? R[i] : L[i]) = M[i];
            ans |= 1ll << b;
            K -= k;
        } else {
            rep(i,N) ((A[i] & (1ll << b)) ? L[i] : R[i]) = M[i];
        }
    }
    cout << ans << '\n';
}

int main(){
    ios::sync_with_stdio(false); cin.tie(nullptr);
    testcase();
    return 0;
}
0