結果

問題 No.1493 隣接xor
ユーザー MisterMister
提出日時 2021-05-08 15:29:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 838 bytes
コンパイル時間 1,317 ms
コンパイル使用メモリ 89,324 KB
実行使用メモリ 13,416 KB
最終ジャッジ日時 2024-09-16 20:22:21
合計ジャッジ時間 6,777 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 177 ms
13,284 KB
testcase_04 AC 175 ms
13,408 KB
testcase_05 AC 181 ms
13,412 KB
testcase_06 AC 174 ms
13,408 KB
testcase_07 AC 152 ms
13,332 KB
testcase_08 AC 169 ms
13,284 KB
testcase_09 AC 171 ms
13,416 KB
testcase_10 AC 158 ms
13,384 KB
testcase_11 AC 172 ms
13,412 KB
testcase_12 AC 169 ms
13,412 KB
testcase_13 AC 30 ms
5,376 KB
testcase_14 AC 15 ms
5,376 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 70 ms
8,296 KB
testcase_21 AC 88 ms
9,192 KB
testcase_22 AC 49 ms
7,412 KB
testcase_23 AC 68 ms
8,548 KB
testcase_24 AC 150 ms
13,028 KB
testcase_25 AC 53 ms
7,288 KB
testcase_26 AC 82 ms
9,568 KB
testcase_27 AC 30 ms
5,888 KB
testcase_28 AC 146 ms
12,260 KB
testcase_29 AC 106 ms
9,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/modint>
#include <iostream>
#include <vector>
#include <map>

using namespace std;
using mint = atcoder::modint1000000007;

// xsの部分列を数える(空列含む)
template <class Int, class T>
Int count_subsequence(const vector<T>& xs) {
    map<T, Int> ds;
    Int dsum = 0;

    for (auto x : xs) {
        Int pat = dsum + 1;

        dsum += pat - ds[x];
        ds[x] = pat;
    }

    return dsum + 1;
}

void solve() {
    int n;
    cin >> n;

    vector<int> xs;
    {
        int xsum = 0;
        while (n--) {
            int x;
            cin >> x;
            xsum ^= x;
            xs.push_back(xsum);
        }
        xs.pop_back();
    }

    cout << count_subsequence<mint>(xs).val() << "\n";
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    solve();

    return 0;
}
0