結果

問題 No.2977 Kth Xor Pair
ユーザー amesyuamesyu
提出日時 2024-12-01 01:26:57
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
MLE  
実行時間 -
コード長 2,166 bytes
コンパイル時間 1,274 ms
コンパイル使用メモリ 93,296 KB
実行使用メモリ 827,136 KB
最終ジャッジ日時 2024-12-01 01:28:33
合計ジャッジ時間 95,383 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 2 ms
13,508 KB
testcase_02 MLE -
testcase_03 AC 19 ms
18,492 KB
testcase_04 AC 19 ms
18,880 KB
testcase_05 AC 17 ms
18,560 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 TLE -
testcase_09 MLE -
testcase_10 TLE -
testcase_11 MLE -
testcase_12 TLE -
testcase_13 MLE -
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,405 ms
38,232 KB
testcase_28 AC 1,414 ms
38,028 KB
testcase_29 AC 1,368 ms
38,432 KB
testcase_30 AC 1,386 ms
37,664 KB
testcase_31 AC 1,350 ms
37,012 KB
testcase_32 AC 834 ms
6,820 KB
testcase_33 AC 845 ms
6,816 KB
testcase_34 AC 871 ms
6,820 KB
testcase_35 AC 859 ms
13,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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});
	}

	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;
	}

	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;
		}
	}
	
	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;
}
0