結果
問題 | No.2977 Kth Xor Pair |
ユーザー | GOTKAKO |
提出日時 | 2024-12-03 21:01:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 3,614 bytes |
コンパイル時間 | 2,583 ms |
コンパイル使用メモリ | 210,536 KB |
実行使用メモリ | 839,424 KB |
最終ジャッジ日時 | 2024-12-03 21:02:02 |
合計ジャッジ時間 | 46,668 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | AC | 42 ms
23,040 KB |
testcase_05 | AC | 42 ms
23,168 KB |
testcase_06 | AC | 42 ms
23,296 KB |
testcase_07 | WA | - |
testcase_08 | TLE | - |
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 | TLE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | WA | - |
testcase_26 | TLE | - |
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 | MLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; struct BinaryTrie{ //バグあるかもよ. struct Node{ int times,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; } public: void make(int b){B = b;} 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);} bool insertset(int x){ if(find(x) == 0) insert(x); else return false; return true; } private: Node* erase(Node *p,int &x,int b){ assert(p != nullptr); p->times--; if(p->times == 0) return nullptr; if(b < 0) return p; eval(p,b); bool one = (x&(1LL<<b))>0; p->LR[one] = erase(p->LR[one],x,b-1); return p; } public: void erase(int x){root = erase(root,x,B-1);} bool eraseset(int x){ if(find(x) != 0) erase(x); else return false; return true; } private: int getkth(Node *p,int k,int b){ //0-indexed. if(b < 0) return 0; eval(p,b); int L = 0; if(p->LR[0] != nullptr) L = p->LR[0]->times; return k<L?getkth(p->LR[0],k,b-1):getkth(p->LR[1],k-L,b-1)|(1LL<<b); } public: int getkth(int k){ if(!(0 <= k && k < size())){ cout << size() << endl; } assert(0 <= k && k < size()); return getkth(root,k,B-1); } int getmin(int x){ Xorall(x); int ret = getkth(0); Xorall(x); return ret; } int getmax(int x){ Xorall(x); int ret = getkth(size()-1); Xorall(x); return ret; } 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: int size(){ if(root != nullptr) return root->times; else return 0; } void Xorall(int x){if(root != nullptr) root->lazy ^= x;} int find(int &x){ if(root == nullptr) return 0; Node *p = root; for(int i=B-1; i>=0; i--){ eval(p,i); p = p->LR[(x>>i)&1]; if(p == nullptr) return 0; } return p->times; } }; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); int 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; int 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"; }