結果

問題 No.2977 Kth Xor Pair
ユーザー nouka28nouka28
提出日時 2024-11-19 21:19:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 834 ms / 3,000 ms
コード長 496 bytes
コンパイル時間 2,689 ms
コンパイル使用メモリ 253,996 KB
実行使用メモリ 15,692 KB
最終ジャッジ日時 2024-11-30 23:31:02
合計ジャッジ時間 20,316 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 6 ms
5,248 KB
testcase_03 AC 5 ms
5,248 KB
testcase_04 AC 4 ms
5,248 KB
testcase_05 AC 5 ms
5,248 KB
testcase_06 AC 5 ms
5,248 KB
testcase_07 AC 419 ms
9,548 KB
testcase_08 AC 746 ms
15,612 KB
testcase_09 AC 719 ms
14,176 KB
testcase_10 AC 734 ms
14,180 KB
testcase_11 AC 774 ms
15,472 KB
testcase_12 AC 735 ms
15,432 KB
testcase_13 AC 801 ms
15,656 KB
testcase_14 AC 404 ms
9,376 KB
testcase_15 AC 628 ms
11,128 KB
testcase_16 AC 806 ms
15,568 KB
testcase_17 AC 816 ms
15,560 KB
testcase_18 AC 834 ms
15,564 KB
testcase_19 AC 798 ms
15,568 KB
testcase_20 AC 800 ms
15,564 KB
testcase_21 AC 800 ms
15,672 KB
testcase_22 AC 764 ms
15,692 KB
testcase_23 AC 773 ms
15,564 KB
testcase_24 AC 753 ms
14,328 KB
testcase_25 AC 826 ms
15,692 KB
testcase_26 AC 777 ms
15,564 KB
testcase_27 AC 183 ms
7,396 KB
testcase_28 AC 180 ms
7,524 KB
testcase_29 AC 178 ms
7,520 KB
testcase_30 AC 178 ms
7,396 KB
testcase_31 AC 187 ms
7,524 KB
testcase_32 AC 162 ms
5,248 KB
testcase_33 AC 163 ms
5,248 KB
testcase_34 AC 161 ms
5,248 KB
testcase_35 AC 162 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define int long long

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

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

	int S=0;

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

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

		int cnt=0;

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

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

	}

	cout<<S<<endl;
}
0