結果

問題 No.1493 隣接xor
ユーザー MisterMister
提出日時 2021-05-01 01:04:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 905 ms
コンパイル使用メモリ 86,948 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-07-19 04:57:47
合計ジャッジ時間 4,096 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 129 ms
12,672 KB
testcase_04 AC 132 ms
12,672 KB
testcase_05 AC 124 ms
12,672 KB
testcase_06 AC 129 ms
12,800 KB
testcase_07 AC 124 ms
12,672 KB
testcase_08 AC 124 ms
12,800 KB
testcase_09 AC 125 ms
12,800 KB
testcase_10 AC 129 ms
12,672 KB
testcase_11 AC 127 ms
12,672 KB
testcase_12 AC 125 ms
12,800 KB
testcase_13 AC 26 ms
5,376 KB
testcase_14 AC 13 ms
5,376 KB
testcase_15 AC 1 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 2 ms
5,376 KB
testcase_20 AC 55 ms
8,192 KB
testcase_21 AC 65 ms
8,832 KB
testcase_22 AC 44 ms
7,040 KB
testcase_23 AC 59 ms
8,320 KB
testcase_24 AC 122 ms
12,288 KB
testcase_25 AC 42 ms
7,040 KB
testcase_26 AC 75 ms
9,344 KB
testcase_27 AC 30 ms
5,632 KB
testcase_28 AC 115 ms
11,776 KB
testcase_29 AC 79 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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

    map<int, mint> cnt;
    mint sum = 1;
    int xsum = 0;
    while (n--) {
        int x;
        cin >> x;
        xsum ^= x;

        auto psum = sum;
        if (cnt.count(xsum)) sum -= cnt[xsum];
        cnt[xsum] = psum;
        sum += psum;
    }

    cout << cnt[xsum].val() << "\n";
}

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

    solve();

    return 0;
}
0