結果

問題 No.2977 Kth Xor Pair
ユーザー shobonvipshobonvip
提出日時 2024-12-11 04:10:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,599 bytes
コンパイル時間 4,392 ms
コンパイル使用メモリ 272,248 KB
実行使用メモリ 55,680 KB
最終ジャッジ日時 2024-12-11 04:11:56
合計ジャッジ時間 82,469 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
33,664 KB
testcase_02 AC 9 ms
10,496 KB
testcase_03 AC 9 ms
32,256 KB
testcase_04 AC 9 ms
10,496 KB
testcase_05 AC 9 ms
32,768 KB
testcase_06 AC 10 ms
10,496 KB
testcase_07 AC 2,098 ms
46,208 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 2,155 ms
23,168 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 2,349 ms
35,200 KB
testcase_23 AC 2,457 ms
29,952 KB
testcase_24 AC 2,464 ms
29,824 KB
testcase_25 TLE -
testcase_26 AC 2,417 ms
29,824 KB
testcase_27 AC 519 ms
8,960 KB
testcase_28 AC 608 ms
11,904 KB
testcase_29 AC 575 ms
11,136 KB
testcase_30 AC 536 ms
9,984 KB
testcase_31 AC 586 ms
10,368 KB
testcase_32 AC 109 ms
5,248 KB
testcase_33 AC 114 ms
5,248 KB
testcase_34 AC 113 ms
5,248 KB
testcase_35 AC 120 ms
36,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
	author:  shobonvip
	created: 2024.12.11 04:03:07
**/

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

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)
#define all(v) v.begin(), v.end()

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	
	ll n, k; cin >> n >> k;
	k--;
	vector<ll> a(n);
	rep(i,0,n) cin >> a[i];

	ll decided = 0;
	rrep(d,0,31) {
		ll tmp = 0;
		vector<map<ll,ll>> mp(2);
		rep(i,0,n) {
			ll f = a[i] >> (d + 1);
			tmp += mp[(a[i] >> d) & 1][f ^ decided];
			mp[(a[i] >> d) & 1][f] += 1;
		}
		if (tmp > k) {
			decided = decided * 2;
		}else{
			decided = decided * 2 + 1;
			k -= tmp;
		}
	}
	cout << decided << endl;
}

0