結果

問題 No.2977 Kth Xor Pair
ユーザー nouka28nouka28
提出日時 2024-11-19 21:12:59
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 478 bytes
コンパイル時間 3,115 ms
コンパイル使用メモリ 251,508 KB
実行使用メモリ 15,020 KB
最終ジャッジ日時 2024-11-30 23:31:18
合計ジャッジ時間 26,661 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 6 ms
5,248 KB
testcase_04 AC 6 ms
5,248 KB
testcase_05 AC 6 ms
5,248 KB
testcase_06 AC 5 ms
5,248 KB
testcase_07 AC 464 ms
8,968 KB
testcase_08 AC 976 ms
14,744 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 979 ms
15,020 KB
testcase_14 AC 422 ms
8,960 KB
testcase_15 AC 811 ms
10,596 KB
testcase_16 AC 1,045 ms
14,912 KB
testcase_17 AC 982 ms
14,912 KB
testcase_18 AC 1,024 ms
14,780 KB
testcase_19 AC 859 ms
14,784 KB
testcase_20 AC 920 ms
14,984 KB
testcase_21 WA -
testcase_22 AC 892 ms
14,912 KB
testcase_23 AC 885 ms
14,920 KB
testcase_24 AC 895 ms
13,680 KB
testcase_25 WA -
testcase_26 AC 895 ms
14,784 KB
testcase_27 AC 192 ms
6,612 KB
testcase_28 AC 194 ms
6,620 KB
testcase_29 WA -
testcase_30 AC 192 ms
6,600 KB
testcase_31 AC 191 ms
6,744 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

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+=c*mp[e^S];
				}
			}
		}

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

	}

	cout<<S<<endl;
}
0