結果

問題 No.2024 Xer
ユーザー umimelumimel
提出日時 2022-07-29 23:26:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 3,112 bytes
コンパイル時間 1,596 ms
コンパイル使用メモリ 182,696 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-07-19 16:59:44
合計ジャッジ時間 5,585 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 167 ms
15,744 KB
testcase_08 AC 170 ms
26,624 KB
testcase_09 AC 83 ms
7,796 KB
testcase_10 AC 173 ms
26,624 KB
testcase_11 AC 60 ms
9,728 KB
testcase_12 AC 110 ms
15,872 KB
testcase_13 AC 96 ms
10,880 KB
testcase_14 AC 228 ms
24,832 KB
testcase_15 AC 70 ms
9,600 KB
testcase_16 AC 119 ms
14,592 KB
testcase_17 AC 50 ms
7,808 KB
testcase_18 AC 64 ms
8,960 KB
testcase_19 AC 173 ms
17,152 KB
testcase_20 AC 92 ms
14,080 KB
testcase_21 AC 178 ms
20,224 KB
testcase_22 AC 162 ms
16,512 KB
testcase_23 AC 157 ms
16,640 KB
testcase_24 AC 174 ms
20,224 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 5 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 4 ms
5,376 KB
testcase_31 AC 4 ms
5,376 KB
testcase_32 AC 5 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 4 ms
5,376 KB
testcase_38 AC 5 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 4 ms
5,376 KB
testcase_43 AC 4 ms
5,376 KB
testcase_44 AC 4 ms
5,376 KB
testcase_45 AC 72 ms
8,348 KB
testcase_46 AC 17 ms
5,376 KB
testcase_47 AC 56 ms
6,380 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 1 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;
#define drep(i, cc, n) for (ll i = (cc); i <= (n); ++i)
#define rep(i, n) drep(i, 0, n - 1)
#define all(a) (a).begin(), (a).end()
#define pb push_back
#define fi first
#define se second

const ll MOD = 1000000007;
const ll MOD2 = 998244353;
const ll INF = 1LL << 60;
const ll N_MAX = 2e5;

int main(){
    ll n, x;
    cin >> n >> x;

    vector<ll> a(n);
    rep(i, n) cin >> a[i];
    
    ll md = 30;
    if(x == 0) md = 0;
    else{
        while (!((x >> md) & 1))
            md--;
    }

    map<ll, vector<ll>> mp;
    rep(i, n){
        mp[a[i]>>(md+1)].pb(a[i]);
    }

    for(auto itr=mp.begin(); itr!=mp.end(); itr++){
        vector<ll> zero;
        vector<ll> one;
        for(ll i : mp[(*itr).fi]){
            if((i>>md) & 1) one.pb(i);
            else zero.pb(i);
        }
        sort(all(zero));
        sort(all(one));

        ll nz = (ll)zero.size();
        ll no = (ll)one.size();
        if(abs(nz-no) >= 2){
            cout << "No" << endl;
            return 0;
        }

        rep(i, nz-1){
            if(zero[i] == zero[i+1]){
                cout << "No" << endl;
                return 0;
            }
        }

        rep(i, no-1){
            if(one[i] == one[i+1]){
                cout << "No" << endl;
                return 0;
            }
        }

        if((nz==0 && no==1) || (nz==1 && no==0)) continue;

        bool flag1 = false;
        bool flag2 = false;
        if(nz == no){
            // 0, 1, 0, 1
            flag1 = true;
            for(ll i=0; i<nz; i++){
                if(!(zero[i] < (ll)(one[i] ^ x) && (ll)(zero[i] ^ x) < one[i])){
                    flag1 = false;
                }
            }

            // 1, 0, 1, 0
            flag2 = true;
            for(ll i=0; i<nz; i++){
                if(!(one[i] < (ll)(zero[i] ^ x) && (ll)(one[i] ^ x) < zero[i])){
                    flag2 = false;
                }
            }

            if(!flag1 && !flag2){
                cout << "No" << endl;
                return 0;
            }
        }else if(nz < no){
            flag1 = true;
            for(ll i=0; i<nz; i++){
                if(!(one[i] < (ll)(zero[i] ^ x) && (ll)(one[i] ^ x) < zero[i])){
                    flag2 = false;
                }
            }
            if(!(zero[nz-1] < (ll)(one[no-1] ^ x) && (ll)(zero[nz-1] ^ x) < one[no-1])){
                flag1 = false;
            }

            if(!flag1){
                cout << "No" << endl;
                return 0;
            }
        }else if(no < nz){
            flag1 = true;
            for(ll i=0; i<no; i++){
                if(!(zero[i] < (ll)(one[i] ^ x) && (ll)(zero[i] ^ x) < one[i])){
                    flag2 = false;
                }
            }
            if(!(one[no-1] < (ll)(zero[nz-1] ^ x) && (ll)(one[no-1] ^ x) < zero[nz-1])){
                flag1 = false;
            }

            if(!flag1){
                cout << "No" << endl;
                return 0;
            }
        }
    }

    cout << "Yes" << endl;
}
0