結果

問題 No.1493 隣接xor
ユーザー KudeKude
提出日時 2021-04-30 23:17:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 1,299 bytes
コンパイル時間 4,580 ms
コンパイル使用メモリ 269,552 KB
実行使用メモリ 27,520 KB
最終ジャッジ日時 2024-07-19 03:22:48
合計ジャッジ時間 8,320 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 187 ms
27,520 KB
testcase_04 AC 171 ms
27,392 KB
testcase_05 AC 185 ms
27,520 KB
testcase_06 AC 174 ms
27,520 KB
testcase_07 AC 169 ms
27,392 KB
testcase_08 AC 178 ms
27,520 KB
testcase_09 AC 175 ms
27,520 KB
testcase_10 AC 178 ms
27,392 KB
testcase_11 AC 195 ms
27,520 KB
testcase_12 AC 186 ms
27,520 KB
testcase_13 AC 31 ms
6,740 KB
testcase_14 AC 17 ms
6,520 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 71 ms
15,744 KB
testcase_21 AC 87 ms
17,408 KB
testcase_22 AC 57 ms
13,056 KB
testcase_23 AC 80 ms
15,872 KB
testcase_24 AC 178 ms
26,496 KB
testcase_25 AC 57 ms
12,928 KB
testcase_26 AC 92 ms
18,304 KB
testcase_27 AC 33 ms
9,472 KB
testcase_28 AC 155 ms
24,960 KB
testcase_29 AC 98 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
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) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
template<class T> void chmax(T& a, const T& b) {a = max(a, b);}
template<class T> void chmin(T& a, const T& b) {a = min(a, b);}
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>;
using mint = modint1000000007;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    VI a(n);
    rep(i, n) cin >> a[i];
    map<int, VI> m;
    int now = 0;
    m[now].push_back(0);
    rep(i, n) {
        now ^= a[i];
        m[now].push_back(i + 1);
    }
    VI nxt(n + 1, -1);
    for(auto& [k, v]: m) {
        int now = n;
        reverse(all(v));
        for(int i: v) {
            if (i) nxt[now] = i;
            now = i;
        }
    }
    vector<mint> s(n + 1);
    mint cur = 0;
    mint ans = 0;
    rep(i, n) {
        mint t;
        if (i) t += s[i];
        else t += 1;
        if (nxt[i] != -1) t -= s[nxt[i]];
        ans += t;
        s[i + 1] = s[i] + t;
    }
    cout << ans.val() << '\n';
}
0