結果
問題 | No.2977 Kth Xor Pair |
ユーザー | kmjp |
提出日時 | 2024-12-01 23:00:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,166 bytes |
コンパイル時間 | 2,450 ms |
コンパイル使用メモリ | 209,788 KB |
実行使用メモリ | 49,792 KB |
最終ジャッジ日時 | 2024-12-01 23:02:15 |
合計ジャッジ時間 | 83,576 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
35,456 KB |
testcase_02 | AC | 13 ms
10,496 KB |
testcase_03 | AC | 13 ms
34,048 KB |
testcase_04 | AC | 12 ms
10,496 KB |
testcase_05 | AC | 12 ms
34,432 KB |
testcase_06 | AC | 13 ms
10,496 KB |
testcase_07 | AC | 2,820 ms
49,792 KB |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 2,541 ms
26,016 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 | 627 ms
7,296 KB |
testcase_28 | AC | 714 ms
9,600 KB |
testcase_29 | AC | 713 ms
9,088 KB |
testcase_30 | AC | 663 ms
8,064 KB |
testcase_31 | AC | 704 ms
8,576 KB |
testcase_32 | AC | 122 ms
5,248 KB |
testcase_33 | AC | 121 ms
5,248 KB |
testcase_34 | AC | 123 ms
5,248 KB |
testcase_35 | AC | 126 ms
33,280 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; int A[202020]; 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; }