結果

問題 No.2658 L-R Nim
ユーザー てんぷらてんぷら
提出日時 2024-02-29 01:33:32
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5,034 ms / 7,000 ms
コード長 1,937 bytes
コンパイル時間 5,008 ms
コンパイル使用メモリ 317,808 KB
実行使用メモリ 472,152 KB
最終ジャッジ日時 2024-09-29 12:37:24
合計ジャッジ時間 52,587 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
19,676 KB
testcase_01 AC 6 ms
11,540 KB
testcase_02 AC 7 ms
19,700 KB
testcase_03 AC 5 ms
11,412 KB
testcase_04 AC 4 ms
11,436 KB
testcase_05 AC 164 ms
92,036 KB
testcase_06 AC 6 ms
11,460 KB
testcase_07 AC 164 ms
92,148 KB
testcase_08 AC 183 ms
92,036 KB
testcase_09 AC 163 ms
92,148 KB
testcase_10 AC 6 ms
11,588 KB
testcase_11 AC 166 ms
92,084 KB
testcase_12 AC 6 ms
11,588 KB
testcase_13 AC 5 ms
11,444 KB
testcase_14 AC 5 ms
11,536 KB
testcase_15 AC 167 ms
92,060 KB
testcase_16 AC 7 ms
11,508 KB
testcase_17 AC 166 ms
92,064 KB
testcase_18 AC 163 ms
91,972 KB
testcase_19 AC 6 ms
11,548 KB
testcase_20 AC 166 ms
91,984 KB
testcase_21 AC 7 ms
11,516 KB
testcase_22 AC 5 ms
11,452 KB
testcase_23 AC 164 ms
92,136 KB
testcase_24 AC 161 ms
91,972 KB
testcase_25 AC 1,587 ms
471,940 KB
testcase_26 AC 1,580 ms
472,152 KB
testcase_27 AC 1,568 ms
471,932 KB
testcase_28 AC 1,580 ms
471,948 KB
testcase_29 AC 1,578 ms
472,112 KB
testcase_30 AC 1,574 ms
471,968 KB
testcase_31 AC 1,700 ms
472,092 KB
testcase_32 AC 1,570 ms
472,008 KB
testcase_33 AC 9 ms
11,716 KB
testcase_34 AC 1,318 ms
471,936 KB
testcase_35 AC 5,034 ms
309,172 KB
testcase_36 AC 1,531 ms
472,024 KB
testcase_37 AC 10 ms
11,880 KB
testcase_38 AC 1,579 ms
472,088 KB
testcase_39 AC 1,574 ms
472,012 KB
testcase_40 AC 1,577 ms
472,060 KB
testcase_41 AC 1,560 ms
471,976 KB
testcase_42 AC 1,573 ms
472,080 KB
testcase_43 AC 1,572 ms
471,964 KB
testcase_44 AC 1,569 ms
471,928 KB
testcase_45 AC 1,610 ms
472,028 KB
testcase_46 AC 1,543 ms
472,064 KB
testcase_47 AC 1,554 ms
472,036 KB
testcase_48 AC 1,495 ms
471,940 KB
testcase_49 AC 1,565 ms
471,972 KB
testcase_50 AC 1,556 ms
472,036 KB
testcase_51 AC 1,562 ms
472,100 KB
testcase_52 AC 1,563 ms
471,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
using ll = long long;
using ull = unsigned long long;
#define rep(i, n) for(int i = 0; i < (int)(n); i++)
#define REP(i, m, n) for(int i = (int)(m); i < (int)(n); i++)
using namespace std;
using namespace atcoder;
using mint = modint998244353;
const int inf = 1000000007;
const ll longinf = 1ll << 60;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int n, k;
    cin >> n >> k;
    vector<int> a(n);
    rep(i, n) cin >> a[i];
    vector<int> s(n + 1);
    rep(i, n) s[i + 1] = s[i] ^ a[i];
    int m = 1 << 20;
    vector<int> l(m, -1), r(m, -1);
    int left = -1, right = n + 1;
    rep(i, n + 1) {
        if(r[s[i]] != -1) {
            left = max(left, r[s[i]]);
            right = min(right, i);
        }
        r[s[i]] = i;
        if(l[s[i]] == -1) {
            l[s[i]] = i;
        }
    }
    if(left >= right) {
        cout << "No" << endl;
        return 0;
    }
    if(left == -1) {
        cout << "Yes" << endl;
        return 0;
    }
    vector ng(n + 1, vector(128, vector(14, short(0))));
    rep(i, n + 1) {
        rep(j, 128) {
            rep(k, 14) {
                int v = j | ((1 << k) - 1) << 7;
                int li = l[s[i] ^ v];
                if(li != -1 && li < i) {
                    ng[li][j][k]++;
                    ng[i][j][k]--;
                }
            }
        }
    }
    rep(i, n) rep(j, 128) rep(k, 14) ng[i + 1][j][k] += ng[i][j][k];
    bool can = false;
    vector<pair<int, int>> p(1 << 20);
    rep(j, 128) rep(k, 14) {
        int v = j | ((1 << k) - 1) << 7;
        p[v] = {j, k};
    }
    REP(i, left, right) {
        for(int j = max(1, a[i] - k); j <= a[i] + k; j++) {
            auto [v, c] = p[j ^ a[i]];
            if(!ng[i][v][c]) {
                can = true;
                break;
            }
        }
    }
    cout << (can ? "Yes" : "No") << endl;
    return 0;
}
0