結果

問題 No.2844 Birthday Party Decoration
ユーザー otoshigootoshigo
提出日時 2024-08-23 21:55:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 1,453 bytes
コンパイル時間 1,894 ms
コンパイル使用メモリ 204,220 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-23 21:55:28
合計ジャッジ時間 2,334 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 5 ms
6,940 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 5 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int T;
    cin>>T;
    while(T--){
        int N;
        ll X;
        cin>>N>>X;
        vector<int>C(N);
        vector<bool>flag(61);
        for(int i=0;i<N;i++){
            cin>>C[i];
            flag[C[i]]=true;
        }
        if(X==0){
            cout<<2*(1LL<<(C.back()))<<"\n";
        }else{
            ll ans=0;
            int tp=-1;
            for(int b=60;b>=0;b--){
                if(X>>b&1){
                    tp=b;
                    break;
                }
            }
            for(int b=60;b>=0;b--){
                if(!(X>>b&1)&&flag[b]){
                    ll y=1LL<<b,z=0;
                    for(int i=b+1;i<=60;i++){
                        if(X>>i&1)y^=1LL<<i;
                    }
                    for(int i=0;i<b;i++){
                        if(X>>i&1)z^=1LL<<i;
                    }
                    z++;
                    if(tp>b)ans=min(y-X,z);
                    else ans=y-X;
                    break;
                }
            }
            ans*=2;
            cout<<ans<<"\n";
        }
    }
}
0