結果
問題 | No.2977 Kth Xor Pair |
ユーザー | amesyu |
提出日時 | 2024-12-01 01:31:30 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,187 bytes |
コンパイル時間 | 1,314 ms |
コンパイル使用メモリ | 93,424 KB |
実行使用メモリ | 725,800 KB |
最終ジャッジ日時 | 2024-12-01 01:33:13 |
合計ジャッジ時間 | 96,017 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,632 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 22 ms
18,976 KB |
testcase_03 | MLE | - |
testcase_04 | AC | 22 ms
19,184 KB |
testcase_05 | MLE | - |
testcase_06 | AC | 24 ms
20,072 KB |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | TLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | TLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | TLE | - |
testcase_27 | AC | 1,486 ms
38,008 KB |
testcase_28 | AC | 1,570 ms
37,480 KB |
testcase_29 | AC | 1,506 ms
37,588 KB |
testcase_30 | AC | 1,542 ms
37,000 KB |
testcase_31 | AC | 1,526 ms
37,124 KB |
testcase_32 | AC | 905 ms
6,688 KB |
testcase_33 | AC | 893 ms
6,692 KB |
testcase_34 | AC | 906 ms
6,692 KB |
testcase_35 | MLE | - |
ソースコード
#include <iostream> #include <vector> #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") using namespace std; using ll = long long; const int log = 31; struct BinaryTrie { struct Node { int par, cnt, b0, b1; }; vector<Node> arr; explicit BinaryTrie(void) { arr.push_back(Node{-1, 0, -1, -1}); } inline int __append(int p, int nxt_bit) { int idx = arr.size(); arr.push_back({p, 0, -1, -1}); if(nxt_bit == 0) arr[p].b0 = idx; if(nxt_bit == 1) arr[p].b1 = idx; return idx; } inline int move(int p, int nxt_bit) { if(nxt_bit == 0) { if(arr[p].b0 == -1) return __append(p, nxt_bit); else return arr[p].b0; } else { if(arr[p].b1 == -1) return __append(p, nxt_bit); else return arr[p].b1; } } void add_value(int x) { int root = 0; for(int i = log; i >= 0; i--) { root = move(root, (x>>i)&1); } while(root >= 0) { arr[root].cnt++; root = arr[root].par; } } inline int subtree_cnt(int r) { if(r == -1) return 0; return arr[r].cnt; } int lower_bound(int value, int x=0) { int lb = 0; int root = 0; for(int i = log; i >= 0; i--) { int nxt_bit = (value>>i)&1; int flip = (x>>i)&1; if(nxt_bit == 1) { if(flip) lb += subtree_cnt(arr[root].b1); else lb += subtree_cnt(arr[root].b0); } root = move(root, nxt_bit^flip); } return lb; } int upper_bound(int value, int x=0) { int ub = 0; int root = 0; for(int i = log; i >= 0; i--) { int nxt_bit = (value>>i)&1; int flip = (x>>i)&1; if(nxt_bit) { if(flip) ub += subtree_cnt(arr[root].b1); else ub += subtree_cnt(arr[root].b0); } root = move(root, nxt_bit^flip); } ub += subtree_cnt(root); return ub; } }; int main() { BinaryTrie bt; long long n, k; cin >> n >> k; vector<int> a(n); for(int i = 0; i < n; ++i) { cin >> a[i]; bt.add_value(a[i]); } // Find N + 2 * K kth number const long long pos = n + 2 * k - 1; int ng = -1, ok = 1e9; while(ok - ng > 1) { int x = (ok + ng) >> 1; long long count = 0; for(int i = 0; i < n; ++i) { count += bt.upper_bound(x, a[i]); } if(count >= pos) ok = x; else ng = x; } cout << ok << endl; }