結果

問題 No.2024 Xer
ユーザー ぷらぷら
提出日時 2022-07-29 21:49:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 962 bytes
コンパイル時間 2,348 ms
コンパイル使用メモリ 212,424 KB
実行使用メモリ 43,156 KB
最終ジャッジ日時 2024-07-19 14:22:18
合計ジャッジ時間 12,916 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 WA -
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 WA -
testcase_07 AC 196 ms
31,816 KB
testcase_08 AC 399 ms
31,596 KB
testcase_09 AC 624 ms
43,156 KB
testcase_10 AC 470 ms
31,464 KB
testcase_11 AC 183 ms
14,056 KB
testcase_12 AC 301 ms
22,120 KB
testcase_13 AC 355 ms
23,716 KB
testcase_14 AC 509 ms
37,112 KB
testcase_15 AC 253 ms
19,676 KB
testcase_16 AC 370 ms
29,724 KB
testcase_17 AC 250 ms
19,512 KB
testcase_18 AC 214 ms
18,280 KB
testcase_19 AC 525 ms
40,572 KB
testcase_20 AC 356 ms
25,736 KB
testcase_21 AC 622 ms
39,504 KB
testcase_22 AC 622 ms
43,084 KB
testcase_23 AC 622 ms
39,508 KB
testcase_24 AC 625 ms
39,572 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 10 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 18 ms
5,376 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 3 ms
5,376 KB
testcase_40 AC 4 ms
5,376 KB
testcase_41 AC 10 ms
5,376 KB
testcase_42 WA -
testcase_43 AC 12 ms
5,376 KB
testcase_44 AC 13 ms
5,376 KB
testcase_45 AC 514 ms
35,872 KB
testcase_46 AC 123 ms
10,784 KB
testcase_47 AC 385 ms
26,428 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N,X;
    cin >> N >> X;
    vector<int>A(N);
    for(int i = 0; i < N; i++) {
        cin >> A[i];
    }
    vector<vector<int>>tmp;
    tmp.push_back(A);
    for(int i = 29; i >= 0; i--) {
        vector<vector<int>>nxt;
        for(int j = 0; j < tmp.size(); j++) {
            vector<int>res1,res2;
            for(int k = 0; k < tmp[j].size(); k++) {
                if(1 & (tmp[j][k] >> i)) {
                    res2.push_back(tmp[j][k]);
                }
                else {
                    res1.push_back(tmp[j][k]);
                }
            }
            if(1 & (X >> i)) {
                swap(res1,res2);
            }
            if(res1.size()) {
                nxt.push_back(res1);
            }
            if(res2.size()) {
                nxt.push_back(res2);
            }
        }
        tmp = nxt;
    }
    cout << ((tmp.size() == N)?"Yes":"No") << endl;;
}
0