結果

問題 No.2024 Xer
ユーザー wanuiwanui
提出日時 2022-07-29 22:30:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,721 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 204,780 KB
実行使用メモリ 11,088 KB
最終ジャッジ日時 2024-07-19 15:38:51
合計ジャッジ時間 4,304 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 73 ms
11,088 KB
testcase_08 AC 60 ms
10,216 KB
testcase_09 AC 24 ms
5,376 KB
testcase_10 AC 60 ms
10,084 KB
testcase_11 WA -
testcase_12 AC 39 ms
6,848 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 10 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 17 ms
5,688 KB
testcase_21 AC 26 ms
5,632 KB
testcase_22 AC 25 ms
5,504 KB
testcase_23 AC 28 ms
6,896 KB
testcase_24 AC 25 ms
5,704 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 WA -
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 WA -
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 WA -
testcase_42 AC 2 ms
5,376 KB
testcase_43 WA -
testcase_44 AC 3 ms
5,376 KB
testcase_45 AC 19 ms
5,376 KB
testcase_46 AC 6 ms
5,376 KB
testcase_47 AC 15 ms
5,376 KB
testcase_48 WA -
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
// clang-format off
using namespace std; using ll=long long; using ull=unsigned long long; using pll=pair<ll,ll>; const ll INF=4e18;
void print0(){}; template<typename H,typename... T> void print0(H h,T... t){cout<<h;print0(t...);}
void print(){print0("\n");}; template<typename H,typename... T>void print(H h,T... t){print0(h);if(sizeof...(T)>0)print0(" ");print(t...);}
void perr0(){}; template<typename H,typename... T> void perr0(H h,T... t){cerr<<h;perr0(t...);}
void perr(){perr0("\n");}; template<typename H,typename... T>void perr(H h,T... t){perr0(h);if(sizeof...(T)>0)perr0(" ");perr(t...);}
void ioinit() { cout<<fixed<<setprecision(15); cerr<<fixed<<setprecision(6); ios_base::sync_with_stdio(0); cin.tie(0); }
// clang-format on

// クイックソート
mt19937 engine(2024);
ll X;
ll randint(ll mn, ll mx) {
    ll rng = mx - mn + 1;
    return mn + (engine() % rng);
}
bool gt(ll a, ll b) {
    if (a < (b ^ X) && (a ^ X) < b) {
        return true;
    }
    return false;
}
void myqsort(vector<ll>& A) {
    if (A.size() == 0) {
        return;
    }
    ll n = A.size();
    ll k = randint(0, n - 1);
    ll base = A[k];
    vector<ll> large;
    vector<ll> small;
    for (ll i = 0; i < n - 1; i++) {
        if (i == k) continue;
        if (gt(base, A[i])) {
            large.push_back(A[i]);
        } else if (gt(A[i], base)) {
            small.push_back(A[i]);
        } else {
            print("No");
            exit(0);
        }
    }
    myqsort(large);
    myqsort(small);
}
int main() {
    ioinit();
    ll N;
    cin >> N >> X;
    vector<ll> A(N);
    for (ll i = 0; i < N; i++) {
        cin >> A[i];
    }
    myqsort(A);
    print("Yes");
    return 0;
}
0