結果

問題 No.2977 Kth Xor Pair
ユーザー kmjpkmjp
提出日時 2024-12-01 22:58:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,898 ms / 3,000 ms
コード長 1,176 bytes
コンパイル時間 2,575 ms
コンパイル使用メモリ 207,492 KB
実行使用メモリ 28,308 KB
最終ジャッジ日時 2024-12-01 22:59:28
合計ジャッジ時間 56,191 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 7 ms
5,248 KB
testcase_05 AC 6 ms
5,248 KB
testcase_06 AC 7 ms
5,248 KB
testcase_07 AC 1,436 ms
16,876 KB
testcase_08 AC 2,659 ms
27,372 KB
testcase_09 AC 2,506 ms
26,180 KB
testcase_10 AC 2,614 ms
26,700 KB
testcase_11 AC 2,706 ms
27,104 KB
testcase_12 AC 2,616 ms
26,576 KB
testcase_13 AC 2,809 ms
27,772 KB
testcase_14 AC 1,450 ms
16,740 KB
testcase_15 AC 2,372 ms
25,240 KB
testcase_16 AC 2,820 ms
28,176 KB
testcase_17 AC 2,810 ms
28,176 KB
testcase_18 AC 2,898 ms
28,308 KB
testcase_19 AC 2,809 ms
28,304 KB
testcase_20 AC 2,753 ms
28,304 KB
testcase_21 AC 2,798 ms
28,304 KB
testcase_22 AC 1,988 ms
28,300 KB
testcase_23 AC 1,930 ms
28,304 KB
testcase_24 AC 1,980 ms
28,304 KB
testcase_25 AC 2,656 ms
28,300 KB
testcase_26 AC 1,996 ms
28,284 KB
testcase_27 AC 266 ms
6,704 KB
testcase_28 AC 284 ms
8,868 KB
testcase_29 AC 282 ms
8,660 KB
testcase_30 AC 301 ms
7,216 KB
testcase_31 AC 273 ms
8,752 KB
testcase_32 AC 249 ms
5,248 KB
testcase_33 AC 240 ms
5,248 KB
testcase_34 AC 241 ms
5,248 KB
testcase_35 AC 241 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------


int N;
ll K;
int A[202020];
unordered_map<int,int> M;

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>K;
	FOR(i,N) cin>>A[i];
	
	int ret=0;
	for(i=29;i>=0;i--) {
		ll C[2]={};
		M.clear();
		
		FOR(j,N) {
			int v=(A[j]>>i<<i);
			C[0]+=M[v^ret];
			C[1]+=M[v^ret^(1<<i)];
			M[v]++;
		}
		if(C[0]<K) {
			K-=C[0];
			ret|=1LL<<i;
		}
		
	}
	cout<<ret<<endl;
	
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0