結果

問題 No.2977 Kth Xor Pair
ユーザー karinohitokarinohito
提出日時 2024-12-12 05:21:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,937 ms / 3,000 ms
コード長 3,049 bytes
コンパイル時間 2,270 ms
コンパイル使用メモリ 205,708 KB
実行使用メモリ 137,944 KB
最終ジャッジ日時 2024-12-12 05:22:13
合計ジャッジ時間 59,465 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 6 ms
6,816 KB
testcase_03 AC 5 ms
6,816 KB
testcase_04 AC 6 ms
6,816 KB
testcase_05 AC 6 ms
6,816 KB
testcase_06 AC 6 ms
6,820 KB
testcase_07 AC 1,217 ms
69,904 KB
testcase_08 AC 2,563 ms
136,256 KB
testcase_09 AC 2,357 ms
136,208 KB
testcase_10 AC 2,312 ms
136,348 KB
testcase_11 AC 2,408 ms
136,300 KB
testcase_12 AC 2,270 ms
136,140 KB
testcase_13 AC 2,453 ms
136,160 KB
testcase_14 AC 1,064 ms
71,188 KB
testcase_15 AC 2,119 ms
137,196 KB
testcase_16 AC 2,583 ms
137,008 KB
testcase_17 AC 2,708 ms
137,068 KB
testcase_18 AC 2,704 ms
136,532 KB
testcase_19 AC 2,783 ms
136,112 KB
testcase_20 AC 2,678 ms
136,216 KB
testcase_21 AC 2,669 ms
136,304 KB
testcase_22 AC 2,858 ms
137,276 KB
testcase_23 AC 2,848 ms
136,996 KB
testcase_24 AC 2,854 ms
136,764 KB
testcase_25 AC 1,514 ms
136,300 KB
testcase_26 AC 2,937 ms
137,944 KB
testcase_27 AC 747 ms
9,608 KB
testcase_28 AC 409 ms
10,116 KB
testcase_29 AC 492 ms
9,608 KB
testcase_30 AC 636 ms
10,248 KB
testcase_31 AC 587 ms
9,608 KB
testcase_32 AC 355 ms
6,820 KB
testcase_33 AC 356 ms
6,816 KB
testcase_34 AC 356 ms
6,820 KB
testcase_35 AC 369 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;
bool deb = 1;
struct Binary_Trie {
  ll base = 36; // 桁数
  struct Node {
    ll ne[2];
    ll c, num;
    Node(ll c_) : c(c_), num(0) { ne[0] = ne[1] = -1; }
  };

  vector<Node> nd;
  ll rt = 0;

  Binary_Trie() { nd.push_back(Node(rt)); }

  void insert(const ll &num) {
    ll id = 0;
    for(ll b = base; b >= 0; b--) {
      ll nt = 0;
      nt = ((num>>b)&1);
      if(nd[id].ne[nt] == -1) {
        nd.push_back(Node(nt));
        nd[id].ne[nt] = nd.size() - 1;
      }
      nd[id].num++;
      id = nd[id].ne[nt];
    }
    nd[id].num++;
  }

  bool search(const ll &num) {
    ll id = 0;
    bool EX = 1;
    for(ll b = base; b >= 0; b--) {
      ll nt = 0;
      nt = ((num>>b)&1);
      if(nd[id].ne[nt] == -1
         || nd[nd[id].ne[nt]].num == 0) {
        EX = 0;
        break;
      }
      id = nd[id].ne[nt];
    }
    return EX;
  }

  void erase(const ll &num) {
    if(!search(num)) return;
    ll id = 0;
    for(ll b = base; b >= 0; b--) {
      ll nt = 0;
      nt = ((num>>b)&1);
      nd[id].num--;
      id = nd[id].ne[nt];
    }
    nd[id].num--;
  }

  ll small_num(const ll &p, const ll &x) { // d XOR p < x なる d の個数
    ll res = 0;
    ll id = 0;
    for(ll b = base; b >= 0; b--) {
      ll nx = 0, np = 0;
      nx = ((x>>b)&1);
      np = ((p>>b)&1);
      if(nx == 1) {
        if(nd[id].ne[np] != -1) {
          res += nd[nd[id].ne[np]].num;
        }
        if(nd[id].ne[1 - np] == -1) { break; }
        else {
          id = nd[id].ne[1 - np];
          continue;
        }
      }
      else {
        if(nd[id].ne[np] == -1) { break; }
        else {
          id = nd[id].ne[np];
          continue;
        }
      }
    }
    return res;
  }

  ll min_XOR(ll x) {
    ll res = 0, id = 0;
    for(ll b = base; b >= 0; b--) {
      ll nx = 0;
      nx = ((x>>b)&1);
      if(nd[id].ne[nx] != -1
         && nd[nd[id].ne[nx]].num > 0) {
        id = nd[id].ne[nx];
      }
      else {
        res += (1ll << b);
        id = nd[id].ne[1 - nx];
      }
    }
    return res;
  }

  ll K_thsmall(ll K) { // K番目に小さい値を返す.(0index)
    if(nd[0].num <= K) return -1e18;
    ll id = 0, res = 0;
    for(ll b = base; b >= 0; b--) {
      if(nd[id].ne[0] != -1
         && nd[nd[id].ne[0]].num > K) {
        id = nd[id].ne[0];
      }
      else {
        res += (1ll << b);
        if(nd[id].ne[0] != -1) {
          K -= nd[nd[id].ne[0]].num;
        }
        id = nd[id].ne[1];
      }
    }
    return res;
  }
};


int main() {

    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    ll N=2e5;
    ll K=(N*(N-1))/4;
    cin>>N>>K;
    vector<ll> A(N);
    Binary_Trie B;
    for(int i=0;i<N;i++){
        cin>>A[i];
        // A[i]=rand()%ll(1e9);
        B.insert(A[i]);
    }
    ll L=-1,R=4e9;
    while(R-L>1){
        ll M=(R+L)/2;
        ll cnt=0;
        if(M!=0)for(int i=0;i<N;i++){
            cnt+=B.small_num(A[i],M)-1;
        }
        (cnt/2<K?L:R)=M;
    }
    cout<<L<<endl;
}
0