結果

問題 No.2658 L-R Nim
ユーザー sotanishysotanishy
提出日時 2024-03-02 00:08:57
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,277 bytes
コンパイル時間 2,921 ms
コンパイル使用メモリ 258,424 KB
実行使用メモリ 10,360 KB
最終ジャッジ日時 2024-09-29 15:38:07
合計ジャッジ時間 17,692 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,312 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
7,340 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 WA -
testcase_05 AC 19 ms
7,672 KB
testcase_06 AC 5 ms
6,816 KB
testcase_07 AC 7 ms
7,812 KB
testcase_08 AC 30 ms
7,680 KB
testcase_09 AC 35 ms
7,908 KB
testcase_10 AC 5 ms
6,816 KB
testcase_11 AC 34 ms
7,888 KB
testcase_12 AC 4 ms
6,816 KB
testcase_13 AC 5 ms
6,816 KB
testcase_14 AC 5 ms
6,820 KB
testcase_15 AC 21 ms
7,812 KB
testcase_16 AC 4 ms
6,820 KB
testcase_17 AC 24 ms
7,840 KB
testcase_18 AC 19 ms
7,856 KB
testcase_19 AC 5 ms
6,820 KB
testcase_20 AC 20 ms
7,912 KB
testcase_21 AC 5 ms
6,820 KB
testcase_22 AC 5 ms
6,816 KB
testcase_23 AC 8 ms
7,864 KB
testcase_24 AC 22 ms
7,844 KB
testcase_25 AC 598 ms
10,152 KB
testcase_26 AC 311 ms
10,316 KB
testcase_27 AC 608 ms
10,288 KB
testcase_28 AC 587 ms
10,328 KB
testcase_29 AC 481 ms
10,328 KB
testcase_30 AC 329 ms
10,328 KB
testcase_31 AC 276 ms
10,216 KB
testcase_32 AC 595 ms
10,272 KB
testcase_33 AC 14 ms
6,820 KB
testcase_34 AC 60 ms
9,100 KB
testcase_35 AC 397 ms
9,072 KB
testcase_36 AC 127 ms
10,268 KB
testcase_37 WA -
testcase_38 AC 564 ms
10,292 KB
testcase_39 AC 587 ms
10,332 KB
testcase_40 AC 607 ms
10,300 KB
testcase_41 AC 631 ms
10,304 KB
testcase_42 AC 592 ms
10,336 KB
testcase_43 AC 612 ms
10,328 KB
testcase_44 AC 551 ms
10,328 KB
testcase_45 AC 594 ms
10,212 KB
testcase_46 AC 608 ms
10,336 KB
testcase_47 AC 585 ms
10,360 KB
testcase_48 AC 70 ms
10,260 KB
testcase_49 AC 513 ms
10,216 KB
testcase_50 AC 523 ms
10,280 KB
testcase_51 AC 612 ms
10,284 KB
testcase_52 AC 616 ms
10,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, t) for (int i = (int)(s); i < (int)(t); ++i)
#define revrep(i, t, s) for (int i = (int)(t)-1; i >= (int)(s); --i)
#define all(x) begin(x), end(x)
template <typename T>
bool chmax(T& a, const T& b) {
    return a < b ? (a = b, 1) : 0;
}
template <typename T>
bool chmin(T& a, const T& b) {
    return a > b ? (a = b, 1) : 0;
}

template <typename T>
ostream& operator<<(ostream& os, const vector<T>& v) {
    for (int i = 0; i < (int)v.size(); ++i) {
        os << v[i];
        if (i < (int)v.size() - 1) os << " ";
    }
    return os;
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << fixed << setprecision(15);

    int N, K;
    cin >> N >> K;
    vector<int> A(N);
    for (auto& x : A) cin >> x;
    vector<int> B(N + 1);
    rep(i, 0, N) B[i + 1] = B[i] ^ A[i];
    map<int, int> prv;
    int left = 0;
    int right = N;
    bool f = false;
    rep(i, 0, N + 1) {
        if (prv.contains(B[i])) {
            if (prv[B[i]] == -1) {
                cout << "No" << endl;
                return 0;
            }
            chmax(left, prv[B[i]]);
            chmin(right, i);
            prv[B[i]] = -1;
            f = true;
        } else {
            prv[B[i]] = i;
        }
    }
    if (left >= right) {
        cout << "No" << endl;
        return 0;
    }
    if (!f) {
        cout << "Yes" << endl;
    }

    set<int> cand;
    rep(i, left, right) {
        rep(x, max(1, A[i] - K), A[i] + K + 1) cand.insert(x ^ A[i]);
    }

    vector<int> first(1 << 20, -1);
    rep(i, 0, N + 1) {
        if (first[B[i]] == -1) {
            first[B[i]] = i;
        }
    }

    for (int x : cand) {
        vector<int> banned(N + 1);
        rep(i, 0, N + 1) {
            if (first[B[i] ^ x] != -1) {
                int l = first[B[i] ^ x];
                if (l < i) {
                    ++banned[l];
                    --banned[i];
                }
            }
        }
        rep(i, 0, N) banned[i + 1] += banned[i];
        rep(i, left, right) {
            if (!banned[i] && abs((A[i] ^ x) - A[i]) <= K) {
                cout << "Yes" << endl;
                return 0;
            }
        }
    }
    cout << "No" << endl;
}
0