結果

問題 No.2977 Kth Xor Pair
ユーザー nouka28nouka28
提出日時 2024-11-19 21:11:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 468 bytes
コンパイル時間 2,713 ms
コンパイル使用メモリ 252,528 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-11-30 23:30:58
合計ジャッジ時間 41,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 6 ms
5,248 KB
testcase_03 AC 7 ms
5,248 KB
testcase_04 AC 6 ms
5,248 KB
testcase_05 AC 6 ms
5,248 KB
testcase_06 AC 6 ms
5,248 KB
testcase_07 AC 840 ms
8,960 KB
testcase_08 AC 1,572 ms
12,928 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,713 ms
13,056 KB
testcase_14 AC 809 ms
8,832 KB
testcase_15 AC 1,407 ms
11,776 KB
testcase_16 AC 1,740 ms
13,312 KB
testcase_17 AC 1,774 ms
13,312 KB
testcase_18 AC 1,809 ms
13,312 KB
testcase_19 AC 1,818 ms
13,312 KB
testcase_20 AC 1,771 ms
13,440 KB
testcase_21 WA -
testcase_22 AC 1,650 ms
13,312 KB
testcase_23 AC 1,622 ms
13,312 KB
testcase_24 AC 1,689 ms
13,440 KB
testcase_25 WA -
testcase_26 AC 1,636 ms
13,312 KB
testcase_27 AC 335 ms
6,912 KB
testcase_28 AC 324 ms
6,912 KB
testcase_29 WA -
testcase_30 AC 336 ms
7,040 KB
testcase_31 AC 334 ms
7,040 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--){
		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