結果

問題 No.2658 L-R Nim
ユーザー KudeKude
提出日時 2024-03-01 23:15:58
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,004 bytes
コンパイル時間 2,949 ms
コンパイル使用メモリ 278,156 KB
実行使用メモリ 51,152 KB
最終ジャッジ日時 2024-09-29 15:08:23
合計ジャッジ時間 55,481 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 75 ms
17,592 KB
testcase_06 AC 314 ms
17,584 KB
testcase_07 AC 74 ms
17,592 KB
testcase_08 AC 76 ms
17,704 KB
testcase_09 AC 256 ms
17,704 KB
testcase_10 AC 309 ms
17,588 KB
testcase_11 AC 228 ms
17,708 KB
testcase_12 AC 330 ms
17,580 KB
testcase_13 AC 253 ms
17,708 KB
testcase_14 AC 333 ms
17,704 KB
testcase_15 AC 73 ms
17,712 KB
testcase_16 AC 335 ms
17,708 KB
testcase_17 AC 260 ms
17,708 KB
testcase_18 AC 337 ms
17,716 KB
testcase_19 AC 259 ms
17,712 KB
testcase_20 AC 127 ms
17,588 KB
testcase_21 AC 336 ms
17,580 KB
testcase_22 AC 336 ms
17,716 KB
testcase_23 AC 79 ms
17,584 KB
testcase_24 AC 184 ms
17,588 KB
testcase_25 AC 1,727 ms
50,892 KB
testcase_26 AC 597 ms
51,012 KB
testcase_27 AC 1,798 ms
51,016 KB
testcase_28 AC 2,059 ms
51,020 KB
testcase_29 AC 1,335 ms
50,892 KB
testcase_30 AC 782 ms
51,020 KB
testcase_31 AC 718 ms
50,900 KB
testcase_32 AC 1,704 ms
51,152 KB
testcase_33 AC 1,282 ms
35,156 KB
testcase_34 AC 2,126 ms
51,020 KB
testcase_35 AC 468 ms
28,836 KB
testcase_36 AC 1,916 ms
50,888 KB
testcase_37 WA -
testcase_38 AC 1,808 ms
51,024 KB
testcase_39 AC 2,217 ms
51,016 KB
testcase_40 AC 1,810 ms
51,016 KB
testcase_41 AC 1,799 ms
50,888 KB
testcase_42 AC 1,940 ms
51,016 KB
testcase_43 AC 1,857 ms
51,020 KB
testcase_44 AC 1,944 ms
51,020 KB
testcase_45 AC 1,864 ms
51,020 KB
testcase_46 AC 1,917 ms
51,020 KB
testcase_47 AC 1,783 ms
50,892 KB
testcase_48 AC 1,610 ms
50,900 KB
testcase_49 AC 1,530 ms
51,016 KB
testcase_50 AC 1,654 ms
51,016 KB
testcase_51 AC 1,921 ms
51,016 KB
testcase_52 AC 1,993 ms
50,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic warning "-Wunused-function"
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

int t1[1 << 20], t2[1 << 20];

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n, k;
  cin >> n >> k;
  VI a(n);
  rep(i, n) cin >> a[i];
  VI s(n + 1);
  rep(i, n) s[i+1] = s[i] ^ a[i];
  VI d; d.reserve(2 * (k + 1) * n);
  for (int x : a) {
    for (int y = x - k; y <= x + k; y++) if (y >= 0) {
      d.emplace_back(y ^ x);
    }
  }
  int left = 0, right = n;
  rep(i, n + 1) {
    if (t1[s[i]]) {
      right = i;
      break;
    }
    t1[s[i]]++;
  }
  for (int x : s) t1[x] = 0;
  rrep(i, n + 1) {
    if (t1[s[i]]) {
      left = i;
      break;
    }
    t1[s[i]]++;
  }
  for (int x : s) t2[x] = 0;
  sort(all(d));
  d.erase(unique(all(d)), d.end());
  // rep(i, n + 1) cout << s[i] << " \n"[i == n];

  for (int x : d) {
    t1[0]++;
    ll bad = 0;
    for (int i = 1; i <= n; i++) {
      t2[s[i]]++;
      bad += t1[s[i] ^ x];
    }
    // cout << "a2" << x << ' ' << bad << endl;
    rep(i, n) {
      // cout << i << endl;
      int diff = abs((x ^ a[i]) - a[i]);
      if (left <= i && i < right && diff <= k && bad == 0) {
        cout << "Yes\n";
        return 0;
      }
      bad -= t1[s[i+1] ^ x];
      t2[s[i+1]]--;
      t1[s[i+1]]++;
      bad += t2[s[i+1] ^ x];
    }
    rep(i, n + 1) t1[s[i]] = 0;
  }
  cout << "No\n";
}
0