結果

問題 No.2844 Birthday Party Decoration
ユーザー otoshigootoshigo
提出日時 2024-08-23 21:52:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,434 bytes
コンパイル時間 2,252 ms
コンパイル使用メモリ 205,568 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-23 21:52:04
合計ジャッジ時間 2,426 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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);
        ll xr=0;
        for(int i=0;i<N;i++){
            cin>>C[i];
            xr^=1LL<<C[i];
            flag[C[i]]=true;
        }
        if(X==0){
            xr<<=1;
            cout<<xr<<"\n";
        }else{
            ll ans=0;
            int tp=-1;
            for(int b=60;b>=0;b--){
                if(X>>b&1)tp=b;
            }
            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<<=1;
            cout<<ans<<"\n";
        }
    }
}
0