結果

問題 No.2977 Kth Xor Pair
ユーザー daiotadaiota
提出日時 2024-12-01 11:28:27
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 725 bytes
コンパイル時間 1,836 ms
コンパイル使用メモリ 172,440 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2024-12-01 11:30:29
合計ジャッジ時間 121,946 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,320 KB
testcase_01 AC 2 ms
10,624 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 55 ms
10,624 KB
testcase_23 AC 51 ms
9,984 KB
testcase_24 AC 57 ms
10,112 KB
testcase_25 TLE -
testcase_26 AC 56 ms
10,624 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 1,503 ms
10,624 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<ll,ll> P;
#define REP(i,n) for(ll i=0;i<ll(n);i++)



ll f(ll a,ll x){
	ll c=0;
	while(a!=0){
		c++;
		a/=x;
	}
	return c;
}



int main(){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);
    ll i,j,k;


    ll N,K;
    cin >> N >> K;

    vector<ll> a(N);
    REP(i,N) cin >> a[i];

    sort(a.begin(),a.end());

    ll c=f(a[N-1],2);
    ll n=(1<<c);

    ll s=0;
    for(i=0;i<n;i++){
    	for(j=0;j<N;j++){
    		ll x=a[j]^i;
    		ll t=upper_bound(a.begin()+j+1,a.begin()+N,x)-lower_bound(a.begin()+j+1,a.begin()+N,x);
    		s+=t;
    		if(s>=K){
    			cout << i << endl;
    			return 0;
    		}

    	}

    }




	return 0;

}
0