結果

問題 No.1493 隣接xor
ユーザー kenskens
提出日時 2021-05-01 00:35:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 1,563 bytes
コンパイル時間 2,023 ms
コンパイル使用メモリ 210,312 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-07-19 04:37:23
合計ジャッジ時間 6,234 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 179 ms
14,976 KB
testcase_04 AC 183 ms
14,848 KB
testcase_05 AC 182 ms
14,848 KB
testcase_06 AC 183 ms
15,104 KB
testcase_07 AC 181 ms
14,976 KB
testcase_08 AC 181 ms
14,976 KB
testcase_09 AC 181 ms
14,848 KB
testcase_10 AC 181 ms
15,104 KB
testcase_11 AC 178 ms
14,976 KB
testcase_12 AC 179 ms
14,976 KB
testcase_13 AC 87 ms
5,504 KB
testcase_14 AC 33 ms
5,504 KB
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 89 ms
9,216 KB
testcase_21 AC 106 ms
9,984 KB
testcase_22 AC 72 ms
7,936 KB
testcase_23 AC 91 ms
9,344 KB
testcase_24 AC 173 ms
14,592 KB
testcase_25 AC 66 ms
7,936 KB
testcase_26 AC 119 ms
10,496 KB
testcase_27 AC 46 ms
6,144 KB
testcase_28 AC 167 ms
13,696 KB
testcase_29 AC 114 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (int)n; i++)
using ll = long long;
constexpr ll mod = 1e9+7;

struct mint {
  ll x;
  mint(ll _x = 0) {if((_x %= mod) < 0) _x += mod; x = _x;}
  bool operator==(const mint a) {return x == a.x;}
  mint operator-() const {return mint(-x);}
  mint& operator+=(const mint a) {
    if((x += a.x) >= mod) x -= mod;
    return *this;
  }
  mint& operator-=(const mint a) {
    if((x += mod-a.x) >= mod) x -= mod;
    return *this;
  }
  mint& operator*=(const mint a) {
    (x *= a.x) %= mod;
    return *this;
  }
  mint operator+(const mint a) const {
    mint res(*this);
    return res+=a;
  }
  mint operator-(const mint a) const {
    mint res(*this);
    return res-=a;
  }
  mint operator*(const mint a) const {
    mint res(*this);
    return res*=a;
  }
  mint pow(ll t) const {
    if(!t) return 1;
    mint a = pow(t>>1);
    a *= a;
    if(t&1) a *= *this;
    return a;
  }
  // for prime mod
  mint inv() const {return pow(mod-2);}
  mint& operator/=(const mint a) {return (*this) *= a.inv();}
  mint operator/(const mint a) const {
    mint res(*this);
    return res/=a;
  }
  ll val() {return x;}
};

int main(){
  int n, a;
  cin >> n;
  vector<int> b(n+1);
  int res = 0;
  rep(i,n) {
    cin >> a;
    res ^= a;
    b[i+1] = res;
  }
  vector<mint> dp(n+1);
  dp[0] = 1;
  map<int,int> last;
  for(int i = 1; i <= n-1; i++) {
    dp[i] += dp[i-1]*2;
    if(last[b[i]]) dp[i] -= dp[last[b[i]]-1];
    last[b[i]] = i;
  }
  cout << dp[n-1].val() << endl;
  return 0;
}
0