結果

問題 No.2977 Kth Xor Pair
ユーザー nouka28nouka28
提出日時 2024-11-24 15:04:29
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 749 ms / 3,000 ms
コード長 540 bytes
コンパイル時間 2,759 ms
コンパイル使用メモリ 251,504 KB
実行使用メモリ 14,892 KB
最終ジャッジ日時 2024-11-30 23:32:18
合計ジャッジ時間 18,451 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 5 ms
5,248 KB
testcase_03 AC 5 ms
5,248 KB
testcase_04 AC 5 ms
5,248 KB
testcase_05 AC 5 ms
5,248 KB
testcase_06 AC 5 ms
5,248 KB
testcase_07 AC 377 ms
8,860 KB
testcase_08 AC 701 ms
14,640 KB
testcase_09 AC 653 ms
13,372 KB
testcase_10 AC 685 ms
13,360 KB
testcase_11 AC 691 ms
14,892 KB
testcase_12 AC 680 ms
14,736 KB
testcase_13 AC 706 ms
14,664 KB
testcase_14 AC 356 ms
8,980 KB
testcase_15 AC 566 ms
10,360 KB
testcase_16 AC 738 ms
14,552 KB
testcase_17 AC 749 ms
14,812 KB
testcase_18 AC 715 ms
14,680 KB
testcase_19 AC 720 ms
14,684 KB
testcase_20 AC 731 ms
14,808 KB
testcase_21 AC 735 ms
14,676 KB
testcase_22 AC 691 ms
14,684 KB
testcase_23 AC 663 ms
14,808 KB
testcase_24 AC 692 ms
13,556 KB
testcase_25 AC 745 ms
14,808 KB
testcase_26 AC 670 ms
14,704 KB
testcase_27 AC 125 ms
6,788 KB
testcase_28 AC 131 ms
6,512 KB
testcase_29 AC 123 ms
6,636 KB
testcase_30 AC 124 ms
6,508 KB
testcase_31 AC 126 ms
6,724 KB
testcase_32 AC 105 ms
5,248 KB
testcase_33 AC 102 ms
5,248 KB
testcase_34 AC 104 ms
5,248 KB
testcase_35 AC 103 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	cin.tie(nullptr);
	ios_base::sync_with_stdio(false);
	
	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--){
		unordered_map<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.count(e^S)){
					cnt+=long(c)*mp[e^S];
				}
			}
		}

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

	}

	cout<<S<<endl;
}
0