結果
問題 | No.2977 Kth Xor Pair |
ユーザー | kotatsugame |
提出日時 | 2024-12-25 05:34:14 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 179 ms / 3,000 ms |
コード長 | 1,477 bytes |
コンパイル時間 | 935 ms |
コンパイル使用メモリ | 80,828 KB |
実行使用メモリ | 99,736 KB |
最終ジャッジ日時 | 2024-12-25 05:34:23 |
合計ジャッジ時間 | 7,514 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 33 ms
10,512 KB |
testcase_08 | AC | 56 ms
16,420 KB |
testcase_09 | AC | 51 ms
14,588 KB |
testcase_10 | AC | 55 ms
14,848 KB |
testcase_11 | AC | 55 ms
15,016 KB |
testcase_12 | AC | 55 ms
14,796 KB |
testcase_13 | AC | 68 ms
15,972 KB |
testcase_14 | AC | 35 ms
10,376 KB |
testcase_15 | AC | 53 ms
13,928 KB |
testcase_16 | AC | 61 ms
16,268 KB |
testcase_17 | AC | 58 ms
16,136 KB |
testcase_18 | AC | 57 ms
16,136 KB |
testcase_19 | AC | 58 ms
16,292 KB |
testcase_20 | AC | 57 ms
16,144 KB |
testcase_21 | AC | 57 ms
16,264 KB |
testcase_22 | AC | 176 ms
99,468 KB |
testcase_23 | AC | 176 ms
99,480 KB |
testcase_24 | AC | 176 ms
99,736 KB |
testcase_25 | AC | 63 ms
16,264 KB |
testcase_26 | AC | 179 ms
99,604 KB |
testcase_27 | AC | 45 ms
6,272 KB |
testcase_28 | AC | 42 ms
5,248 KB |
testcase_29 | AC | 42 ms
5,248 KB |
testcase_30 | AC | 42 ms
5,632 KB |
testcase_31 | AC | 42 ms
5,504 KB |
testcase_32 | AC | 33 ms
5,248 KB |
testcase_33 | AC | 35 ms
5,248 KB |
testcase_34 | AC | 36 ms
5,248 KB |
testcase_35 | AC | 35 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function 'void solve2(std::vector<std::pair<int, int> >, std::vector<std::pair<int, int> >, long int, int)': main.cpp:21:21: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 21 | auto[al,ar]=A[i]; | ^ main.cpp:22:21: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 22 | auto[bl,br]=B[i]; | ^ main.cpp: In function 'void solve(std::vector<std::pair<int, int> >, long int, int)': main.cpp:45:17: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 45 | for(auto[l,r]:LR)if(l<r) | ^
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<cassert> using namespace std; int A[2<<17]; int ans=0; int mid(int l,int r,int k) { int m=l; while(m<r&&!(A[m]>>k&1))m++; return m; } void solve2(vector<pair<int,int> >A,vector<pair<int,int> >B,long K,int k) { if(k==-1)return; vector<pair<int,int> >zero,one; long v=0; for(int i=0;i<A.size();i++) { auto[al,ar]=A[i]; auto[bl,br]=B[i]; if(al==ar||bl==br)continue; int am=mid(al,ar,k),bm=mid(bl,br,k); zero.push_back(make_pair(al,am)); one.push_back(make_pair(bl,bm)); zero.push_back(make_pair(am,ar)); one.push_back(make_pair(bm,br)); v+=(long)(am-al)*(bm-bl); v+=(long)(ar-am)*(br-bm); } if(v>=K)solve2(zero,one,K,k-1); else { ans|=1<<k; for(int i=0;i<zero.size();i+=2)swap(one[i],one[i+1]); solve2(zero,one,K-v,k-1); } } void solve(vector<pair<int,int> >LR,long K,int k) { if(k==-1)return; vector<pair<int,int> >zero,one; long v=0; for(auto[l,r]:LR)if(l<r) { int m=mid(l,r,k); zero.push_back(make_pair(l,m)); one.push_back(make_pair(m,r)); v+=(long)(m-l)*(m-l-1)/2; v+=(long)(r-m)*(r-m-1)/2; } if(v<K) { ans|=1<<k; solve2(zero,one,K-v,k-1); } else { for(auto v:one)zero.push_back(v); solve(zero,K,k-1); } } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N; long K; cin>>N>>K; for(int i=0;i<N;i++)cin>>A[i]; sort(A,A+N); vector<pair<int,int> >fst; fst.push_back(make_pair(0,N)); solve(fst,K,29); cout<<ans<<endl; }