結果
問題 | No.2977 Kth Xor Pair |
ユーザー | kmjp |
提出日時 | 2024-12-01 22:56:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,149 bytes |
コンパイル時間 | 2,258 ms |
コンパイル使用メモリ | 208,372 KB |
実行使用メモリ | 64,768 KB |
最終ジャッジ日時 | 2024-12-01 22:58:11 |
合計ジャッジ時間 | 86,093 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
30,336 KB |
testcase_02 | AC | 13 ms
13,760 KB |
testcase_03 | AC | 14 ms
10,496 KB |
testcase_04 | AC | 13 ms
10,496 KB |
testcase_05 | AC | 13 ms
42,496 KB |
testcase_06 | AC | 13 ms
10,496 KB |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 2,976 ms
31,776 KB |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | AC | 690 ms
9,088 KB |
testcase_28 | AC | 783 ms
12,160 KB |
testcase_29 | AC | 742 ms
11,520 KB |
testcase_30 | AC | 717 ms
10,240 KB |
testcase_31 | AC | 709 ms
10,624 KB |
testcase_32 | AC | 137 ms
5,248 KB |
testcase_33 | AC | 142 ms
5,248 KB |
testcase_34 | AC | 137 ms
5,248 KB |
testcase_35 | AC | 143 ms
40,320 KB |
ソースコード
#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,A[202020]; void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>K; FOR(i,N) cin>>A[i]; ll ret=0; for(i=31;i>=0;i--) { ll C[2]={}; map<int,ll> M; FOR(j,N) { ll v=(A[j]>>i<<i); C[0]+=M[v^ret]; C[1]+=M[v^ret^(1LL<<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; }