結果

問題 No.1493 隣接xor
ユーザー chocoruskchocorusk
提出日時 2021-04-30 21:55:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 1,519 bytes
コンパイル時間 3,452 ms
コンパイル使用メモリ 198,076 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-07-19 01:20:54
合計ジャッジ時間 7,697 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 205 ms
15,104 KB
testcase_04 AC 194 ms
14,976 KB
testcase_05 AC 192 ms
14,848 KB
testcase_06 AC 198 ms
14,976 KB
testcase_07 AC 197 ms
15,104 KB
testcase_08 AC 194 ms
14,976 KB
testcase_09 AC 200 ms
14,976 KB
testcase_10 AC 212 ms
15,104 KB
testcase_11 AC 194 ms
14,976 KB
testcase_12 AC 204 ms
14,976 KB
testcase_13 AC 91 ms
6,944 KB
testcase_14 AC 39 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 92 ms
9,216 KB
testcase_21 AC 104 ms
10,112 KB
testcase_22 AC 73 ms
8,192 KB
testcase_23 AC 93 ms
9,344 KB
testcase_24 AC 183 ms
14,336 KB
testcase_25 AC 70 ms
7,808 KB
testcase_26 AC 116 ms
10,496 KB
testcase_27 AC 43 ms
6,944 KB
testcase_28 AC 172 ms
13,824 KB
testcase_29 AC 118 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
using mint=modint1000000007;
template<typename T>
struct BIT{
    vector<T> bit;
    int size;
    BIT(int n):size(n), bit(n+1, 0){}
    T sum(int i){ //[0, i)
        T s=0;
        while(i>0){
            s+=bit[i];
            i-=(i&(-i));
        }
        return s;
    }
    T sum(int l, int r){ //[l, r)
        return sum(r)-sum(l);
    }
    void add(int i, T x){
        i++;
        while(i<=size){
            bit[i]+=x;
            i+=(i&(-i));
        }
    }
};
int main()
{
    int n; cin>>n;
    int a[200020];
    int s[200020]; s[0]=0;
    for(int i=0; i<n; i++){
        cin>>a[i];
        s[i+1]=(s[i]^a[i]);
    }
    map<int, int> mp;
    mp[0]=0;
    mint ans=1;
    BIT<mint> bit(n+1);
    bit.add(0, 1);
    for(int i=1; i<n; i++){
        int l=mp[s[i]];
        mp[s[i]]=i;
        mint t=bit.sum(l, i);
        ans+=t;
        bit.add(i, t);
    }
    cout<<ans.val()<<endl;
    return 0;
}
0