結果

問題 No.2977 Kth Xor Pair
ユーザー nouka28nouka28
提出日時 2024-11-25 00:28:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,616 ms / 3,000 ms
コード長 621 bytes
コンパイル時間 3,117 ms
コンパイル使用メモリ 255,108 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-11-30 23:34:05
合計ジャッジ時間 53,729 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 7 ms
6,820 KB
testcase_03 AC 6 ms
6,820 KB
testcase_04 AC 6 ms
6,820 KB
testcase_05 AC 6 ms
6,816 KB
testcase_06 AC 7 ms
6,816 KB
testcase_07 AC 1,075 ms
8,960 KB
testcase_08 AC 2,392 ms
12,928 KB
testcase_09 AC 2,241 ms
12,416 KB
testcase_10 AC 2,238 ms
12,544 KB
testcase_11 AC 2,342 ms
12,800 KB
testcase_12 AC 2,281 ms
12,544 KB
testcase_13 AC 2,490 ms
13,184 KB
testcase_14 AC 1,047 ms
8,832 KB
testcase_15 AC 2,044 ms
11,776 KB
testcase_16 AC 2,593 ms
13,440 KB
testcase_17 AC 2,522 ms
13,312 KB
testcase_18 AC 2,571 ms
13,568 KB
testcase_19 AC 2,536 ms
13,440 KB
testcase_20 AC 2,596 ms
13,312 KB
testcase_21 AC 2,616 ms
13,440 KB
testcase_22 AC 2,458 ms
13,440 KB
testcase_23 AC 2,413 ms
13,440 KB
testcase_24 AC 2,471 ms
13,440 KB
testcase_25 AC 2,524 ms
13,440 KB
testcase_26 AC 2,360 ms
13,440 KB
testcase_27 AC 321 ms
6,912 KB
testcase_28 AC 317 ms
6,820 KB
testcase_29 AC 319 ms
6,912 KB
testcase_30 AC 324 ms
6,912 KB
testcase_31 AC 323 ms
6,912 KB
testcase_32 AC 82 ms
6,816 KB
testcase_33 AC 87 ms
6,820 KB
testcase_34 AC 87 ms
6,816 KB
testcase_35 AC 87 ms
6,820 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--){
		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