結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 4 ms
5,248 KB
testcase_06 AC 5 ms
5,248 KB
testcase_07 AC 394 ms
8,960 KB
testcase_08 AC 733 ms
14,748 KB
testcase_09 AC 676 ms
13,476 KB
testcase_10 AC 717 ms
13,460 KB
testcase_11 AC 735 ms
14,732 KB
testcase_12 AC 727 ms
14,716 KB
testcase_13 AC 761 ms
14,764 KB
testcase_14 AC 384 ms
8,956 KB
testcase_15 AC 604 ms
10,540 KB
testcase_16 AC 767 ms
14,784 KB
testcase_17 AC 770 ms
14,784 KB
testcase_18 AC 770 ms
14,780 KB
testcase_19 AC 765 ms
14,784 KB
testcase_20 AC 775 ms
14,912 KB
testcase_21 AC 765 ms
14,908 KB
testcase_22 AC 715 ms
14,788 KB
testcase_23 AC 728 ms
14,780 KB
testcase_24 AC 732 ms
13,556 KB
testcase_25 AC 779 ms
14,908 KB
testcase_26 AC 730 ms
14,784 KB
testcase_27 AC 173 ms
6,748 KB
testcase_28 AC 177 ms
6,612 KB
testcase_29 AC 178 ms
6,616 KB
testcase_30 AC 179 ms
6,616 KB
testcase_31 AC 172 ms
6,820 KB
testcase_32 AC 151 ms
5,248 KB
testcase_33 AC 152 ms
5,248 KB
testcase_34 AC 151 ms
5,248 KB
testcase_35 AC 156 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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--){
		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