結果

問題 No.2977 Kth Xor Pair
ユーザー nouka28nouka28
提出日時 2024-11-24 15:06:01
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 744 ms / 3,000 ms
コード長 631 bytes
コンパイル時間 2,729 ms
コンパイル使用メモリ 253,628 KB
実行使用メモリ 14,812 KB
最終ジャッジ日時 2024-11-30 23:32:24
合計ジャッジ時間 18,143 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 5 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 370 ms
8,988 KB
testcase_08 AC 707 ms
14,640 KB
testcase_09 AC 663 ms
13,372 KB
testcase_10 AC 692 ms
13,336 KB
testcase_11 AC 702 ms
14,636 KB
testcase_12 AC 684 ms
14,612 KB
testcase_13 AC 700 ms
14,660 KB
testcase_14 AC 348 ms
8,976 KB
testcase_15 AC 556 ms
10,496 KB
testcase_16 AC 732 ms
14,684 KB
testcase_17 AC 737 ms
14,680 KB
testcase_18 AC 744 ms
14,680 KB
testcase_19 AC 713 ms
14,680 KB
testcase_20 AC 709 ms
14,804 KB
testcase_21 AC 701 ms
14,684 KB
testcase_22 AC 639 ms
14,812 KB
testcase_23 AC 664 ms
14,700 KB
testcase_24 AC 653 ms
13,556 KB
testcase_25 AC 718 ms
14,808 KB
testcase_26 AC 647 ms
14,680 KB
testcase_27 AC 117 ms
6,512 KB
testcase_28 AC 114 ms
6,512 KB
testcase_29 AC 114 ms
6,508 KB
testcase_30 AC 114 ms
6,644 KB
testcase_31 AC 111 ms
6,640 KB
testcase_32 AC 97 ms
5,248 KB
testcase_33 AC 93 ms
5,248 KB
testcase_34 AC 91 ms
5,248 KB
testcase_35 AC 96 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

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<<"\n";
}
0