結果

問題 No.2977 Kth Xor Pair
ユーザー nouka28nouka28
提出日時 2024-11-19 21:23:53
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 601 bytes
コンパイル時間 4,463 ms
コンパイル使用メモリ 274,240 KB
実行使用メモリ 15,804 KB
最終ジャッジ日時 2024-11-30 23:32:46
合計ジャッジ時間 87,735 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,560 KB
testcase_01 AC 2 ms
10,496 KB
testcase_02 AC 20 ms
10,496 KB
testcase_03 AC 20 ms
10,164 KB
testcase_04 AC 20 ms
10,496 KB
testcase_05 AC 20 ms
10,000 KB
testcase_06 AC 20 ms
10,496 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 197 ms
7,136 KB
testcase_28 AC 197 ms
7,264 KB
testcase_29 AC 196 ms
7,132 KB
testcase_30 AC 198 ms
7,256 KB
testcase_31 AC 196 ms
7,132 KB
testcase_32 AC 107 ms
5,248 KB
testcase_33 AC 113 ms
5,248 KB
testcase_34 AC 113 ms
5,248 KB
testcase_35 AC 115 ms
15,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;

int main(){
	int N;cin>>N;
	long K;cin>>K;K--;

	vector<int> A(N);for(auto&&e:A)cin>>e;

	int S=0;

	for(int i=30;i>=0;i--){
		gp_hash_table<int, int> mp;

		for(auto&&e:A){
			mp[(e>>i)<<i]++;
		}

		long cnt=0;

		for(auto&&[e,c]:mp){
			if(e>(e^S))continue;
			if(S==0){
				cnt+=long(c)*(c-1)/2;
			}else{
				if(mp.find(e^S)!=mp.end()){
					cnt+=long(c)*mp[e^S];
				}
			}
		}

		if(cnt<=K){
			S|=1<<i;
			K-=cnt;
		}

	}

	cout<<S<<endl;
}
0