結果

問題 No.2977 Kth Xor Pair
ユーザー GOTKAKOGOTKAKO
提出日時 2024-12-03 21:11:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,974 bytes
コンパイル時間 2,690 ms
コンパイル使用メモリ 211,120 KB
実行使用メモリ 1,632,640 KB
最終ジャッジ日時 2024-12-03 21:13:28
合計ジャッジ時間 111,834 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 AC 43 ms
29,604 KB
testcase_05 MLE -
testcase_06 MLE -
testcase_07 TLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 2,759 ms
123,904 KB
testcase_29 AC 2,838 ms
123,904 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 1,631 ms
6,816 KB
testcase_33 AC 1,771 ms
6,816 KB
testcase_34 AC 1,603 ms
6,820 KB
testcase_35 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

struct BinaryTrie{
    //バグあるかもよ.
    struct Node{
        int times;
        int lazy;
        Node *LR[2];
        Node():times(0),lazy(0),LR{nullptr,nullptr}{}
    };
    private:
    int B = 30; //2^B未満の数のみ.
    Node *root = nullptr;
    void eval(Node *p,int &b){
        if(p->lazy&(1LL<<b)) swap(p->LR[0],p->LR[1]);
        if(p->LR[0] != nullptr) p->LR[0]->lazy ^= p->lazy;
        if(p->LR[1] != nullptr) p->LR[1]->lazy ^= p->lazy;
        p->lazy = 0;
    }
 
    private:
    Node* insert(Node *p,int &x,int b){
        if(p == nullptr) p = new Node;
        p->times++;
        if(b < 0) return p;
        eval(p,b);
        bool one = (x&(1LL<<b))>0;
        p->LR[one] = insert(p->LR[one],x,b-1);
        return p;
    }
    public: 
    void insert(int x){root = insert(root,x,B-1);}
 
    private:
    int lowerbound(Node *p,int &x,int b){
        if(p == nullptr || b < 0) return 0;
        eval(p,b);
        bool one = (x&(1LL<<b))>0;
        if(one && p->LR[0] != nullptr) return p->LR[0]->times+lowerbound(p->LR[one],x,b-1);
        return lowerbound(p->LR[one],x,b-1);
    }
    public:
    int lower_bound(int x){return lowerbound(root,x,B-1);}
    int upper_bound(int x){x++; return lowerbound(root,x,B-1);}
 
    public:
    void Xorall(int x){if(root != nullptr) root->lazy ^= x;}
};

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    long long N,K; cin >> N >> K;
    vector<int> A(N);
    for(auto &a : A) cin >> a;

    int low = -1,high = (1<<30)-1;
    while(high-low > 1){
        int mid = (high+low)/2;
        long long now = 0;
        BinaryTrie Z;
        for(int i=0; i<N; i++){
            Z.Xorall(A.at(i));
            int ok = Z.upper_bound(mid);
            now += ok;
            Z.Xorall(A.at(i));
            Z.insert(A.at(i));
        }
        if(now < K) low = mid;
        else high = mid;
    }
    cout << high << "\n";
}
0