結果

問題 No.2658 L-R Nim
ユーザー KudeKude
提出日時 2024-03-01 23:21:50
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,200 ms / 7,000 ms
コード長 1,877 bytes
コンパイル時間 3,578 ms
コンパイル使用メモリ 277,228 KB
実行使用メモリ 51,032 KB
最終ジャッジ日時 2024-09-29 15:15:15
合計ジャッジ時間 58,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 67 ms
17,716 KB
testcase_06 AC 324 ms
17,716 KB
testcase_07 AC 67 ms
17,720 KB
testcase_08 AC 69 ms
17,708 KB
testcase_09 AC 328 ms
17,712 KB
testcase_10 AC 310 ms
17,588 KB
testcase_11 AC 227 ms
17,708 KB
testcase_12 AC 327 ms
17,716 KB
testcase_13 AC 259 ms
17,576 KB
testcase_14 AC 336 ms
17,708 KB
testcase_15 AC 68 ms
17,712 KB
testcase_16 AC 341 ms
17,720 KB
testcase_17 AC 323 ms
17,720 KB
testcase_18 AC 341 ms
17,580 KB
testcase_19 AC 266 ms
17,708 KB
testcase_20 AC 119 ms
17,708 KB
testcase_21 AC 340 ms
17,708 KB
testcase_22 AC 334 ms
17,716 KB
testcase_23 AC 71 ms
17,588 KB
testcase_24 AC 176 ms
17,580 KB
testcase_25 AC 1,876 ms
50,888 KB
testcase_26 AC 542 ms
51,020 KB
testcase_27 AC 1,994 ms
51,020 KB
testcase_28 AC 2,063 ms
50,888 KB
testcase_29 AC 1,445 ms
51,024 KB
testcase_30 AC 780 ms
51,020 KB
testcase_31 AC 649 ms
51,012 KB
testcase_32 AC 2,071 ms
51,020 KB
testcase_33 AC 1,285 ms
35,156 KB
testcase_34 AC 1,804 ms
51,020 KB
testcase_35 AC 444 ms
28,832 KB
testcase_36 AC 2,144 ms
51,016 KB
testcase_37 AC 281 ms
34,572 KB
testcase_38 AC 1,943 ms
50,888 KB
testcase_39 AC 1,926 ms
51,020 KB
testcase_40 AC 1,970 ms
51,016 KB
testcase_41 AC 2,025 ms
51,024 KB
testcase_42 AC 2,057 ms
51,016 KB
testcase_43 AC 1,924 ms
51,032 KB
testcase_44 AC 2,196 ms
51,016 KB
testcase_45 AC 1,800 ms
51,016 KB
testcase_46 AC 2,200 ms
50,888 KB
testcase_47 AC 1,803 ms
51,024 KB
testcase_48 AC 1,787 ms
50,892 KB
testcase_49 AC 1,832 ms
51,016 KB
testcase_50 AC 1,827 ms
50,892 KB
testcase_51 AC 1,798 ms
50,888 KB
testcase_52 AC 1,944 ms
50,892 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) t1[x] = 0;
  sort(all(d));
  d.erase(unique(all(d)), d.end());
  for (int x : d) {
    t1[0]++;
    ll bad = 0;
    for (int i = 1; i <= n; i++) {
      t2[s[i]]++;
      bad += t1[s[i] ^ x];
    }
    rep(i, n) {
      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