結果

問題 No.1493 隣接xor
ユーザー SSRSSSRS
提出日時 2021-04-30 22:13:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 970 bytes
コンパイル時間 1,668 ms
コンパイル使用メモリ 176,792 KB
実行使用メモリ 15,872 KB
最終ジャッジ日時 2024-07-19 01:38:11
合計ジャッジ時間 6,102 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 198 ms
15,744 KB
testcase_04 AC 205 ms
15,744 KB
testcase_05 AC 199 ms
15,744 KB
testcase_06 AC 206 ms
15,744 KB
testcase_07 AC 192 ms
15,744 KB
testcase_08 AC 192 ms
15,744 KB
testcase_09 AC 239 ms
15,872 KB
testcase_10 AC 194 ms
15,744 KB
testcase_11 AC 200 ms
15,744 KB
testcase_12 AC 190 ms
15,744 KB
testcase_13 AC 99 ms
6,400 KB
testcase_14 AC 48 ms
6,528 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 93 ms
9,600 KB
testcase_21 AC 106 ms
10,496 KB
testcase_22 AC 74 ms
8,320 KB
testcase_23 AC 93 ms
9,728 KB
testcase_24 AC 181 ms
15,232 KB
testcase_25 AC 69 ms
8,192 KB
testcase_26 AC 115 ms
11,136 KB
testcase_27 AC 45 ms
6,656 KB
testcase_28 AC 174 ms
14,464 KB
testcase_29 AC 116 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 1000000007;
struct binary_indexed_tree{
  int N;
  vector<long long> BIT;
  binary_indexed_tree(int N): N(N), BIT(N + 1, 0){
  }
  void add(int i, long long x){
    i++;
    while (i <= N){
      BIT[i] += x;
      BIT[i] %= MOD;
      i += i & -i;
    }
  }
  long long sum(int i){
    long long ans = 0;
    while (i > 0){
      ans += BIT[i];
      ans %= MOD;
      i -= i & -i;
    }
    return ans;
  }
  long long sum(int L, int R){
    return (sum(R) + MOD - sum(L)) % MOD;
  }
};
int main(){
  int N;
  cin >> N;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<int> X(N + 1);
  X[0] = 0;
  for (int i = 0; i < N; i++){
    X[i + 1] = X[i] ^ A[i];
  }
  map<int, int> pr;
  binary_indexed_tree dp(N);
  dp.add(0, 1);
  for (int i = 1; i < N; i++){
    long long tmp = dp.sum(pr[X[i]], i);
    dp.add(i, tmp);
    pr[X[i]] = i;
  }
  cout << dp.sum(N) << endl;
}
0