結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 6 ms
6,820 KB
testcase_03 AC 5 ms
6,816 KB
testcase_04 AC 5 ms
6,816 KB
testcase_05 AC 5 ms
6,816 KB
testcase_06 AC 5 ms
6,820 KB
testcase_07 AC 1,154 ms
70,328 KB
testcase_08 AC 2,570 ms
136,244 KB
testcase_09 AC 2,328 ms
136,240 KB
testcase_10 AC 2,198 ms
136,752 KB
testcase_11 AC 2,309 ms
136,508 KB
testcase_12 AC 2,237 ms
136,456 KB
testcase_13 AC 2,379 ms
137,040 KB
testcase_14 AC 975 ms
70,168 KB
testcase_15 AC 1,970 ms
137,352 KB
testcase_16 AC 2,475 ms
136,372 KB
testcase_17 AC 2,515 ms
136,040 KB
testcase_18 AC 2,470 ms
136,964 KB
testcase_19 AC 2,589 ms
137,340 KB
testcase_20 AC 2,409 ms
136,780 KB
testcase_21 AC 2,595 ms
136,040 KB
testcase_22 AC 2,736 ms
137,328 KB
testcase_23 AC 2,758 ms
137,392 KB
testcase_24 AC 2,804 ms
137,644 KB
testcase_25 AC 1,472 ms
136,444 KB
testcase_26 AC 2,968 ms
137,180 KB
testcase_27 AC 705 ms
10,888 KB
testcase_28 AC 377 ms
10,760 KB
testcase_29 AC 421 ms
9,736 KB
testcase_30 AC 609 ms
9,864 KB
testcase_31 AC 533 ms
9,220 KB
testcase_32 AC 279 ms
6,820 KB
testcase_33 AC 281 ms
6,820 KB
testcase_34 AC 311 ms
6,816 KB
testcase_35 AC 295 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;
bool deb = 1;
struct Binary_Trie {
  ll base = 31; // 桁数
  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