結果

問題 No.1493 隣接xor
ユーザー keijakkeijak
提出日時 2021-05-01 04:54:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,099 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 212,748 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-07-19 07:33:48
合計ジャッジ時間 5,161 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 127 ms
15,616 KB
testcase_04 AC 125 ms
15,488 KB
testcase_05 AC 128 ms
15,616 KB
testcase_06 AC 127 ms
15,616 KB
testcase_07 AC 125 ms
15,488 KB
testcase_08 AC 122 ms
15,616 KB
testcase_09 AC 122 ms
15,616 KB
testcase_10 AC 125 ms
15,616 KB
testcase_11 AC 130 ms
15,488 KB
testcase_12 AC 128 ms
15,616 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 61 ms
9,472 KB
testcase_21 AC 66 ms
10,496 KB
testcase_22 AC 44 ms
8,192 KB
testcase_23 AC 57 ms
9,728 KB
testcase_24 AC 114 ms
15,104 KB
testcase_25 AC 42 ms
8,064 KB
testcase_26 AC 71 ms
10,880 KB
testcase_27 AC 26 ms
6,528 KB
testcase_28 AC 108 ms
14,336 KB
testcase_29 AC 79 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP_(i, a_, b_, a, b, ...) \
  for (int i = (a), END_##i = (b); i < END_##i; ++i)
#define REP(i, ...) REP_(i, __VA_ARGS__, __VA_ARGS__, 0, __VA_ARGS__)
#define ALL(x) std::begin(x), std::end(x)
using u32 = unsigned;

#include <atcoder/modint>
using Mint = atcoder::modint1000000007;
std::ostream &operator<<(std::ostream &os, const Mint &m) {
  return os << m.val();
}
template <typename T>
std::istream &operator>>(std::istream &is, std::vector<T> &a) {
  for (auto &x : a) is >> x;
  return is;
}
using namespace std;

Mint solve() {
  int n;
  cin >> n;
  vector<u32> a(n), b(n + 1);
  cin >> a;
  REP(i, n) b[i + 1] = b[i] ^ a[i];

  vector dp(n + 1, Mint(0)), dpcum(n + 2, Mint(0));
  dp[0] = 1;
  dpcum[1] = 1;
  map<u32, int> pre;
  REP(i, n) {
    auto it = pre.find(b[i + 1]);
    int j = (it == pre.end()) ? 0 : it->second;
    dp[i + 1] = dpcum[i + 1] - dpcum[j];
    dpcum[i + 2] = dpcum[i + 1] + dp[i + 1];
    pre[b[i + 1]] = i + 1;
  }
  return dp[n];
}

int main() {
  ios_base::sync_with_stdio(false), cin.tie(nullptr);
  cout << solve() << "\n";
}
0