結果

問題 No.1493 隣接xor
ユーザー the-xinthe-xin
提出日時 2021-07-12 10:23:40
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 747 ms
コンパイル使用メモリ 84,200 KB
実行使用メモリ 18,172 KB
最終ジャッジ日時 2024-07-02 03:22:45
合計ジャッジ時間 3,545 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,424 KB
testcase_01 AC 4 ms
7,296 KB
testcase_02 AC 5 ms
7,296 KB
testcase_03 AC 87 ms
18,172 KB
testcase_04 AC 93 ms
18,040 KB
testcase_05 AC 89 ms
18,040 KB
testcase_06 AC 87 ms
18,036 KB
testcase_07 AC 92 ms
18,136 KB
testcase_08 AC 89 ms
18,036 KB
testcase_09 AC 95 ms
18,032 KB
testcase_10 AC 90 ms
18,036 KB
testcase_11 AC 91 ms
18,040 KB
testcase_12 AC 90 ms
18,168 KB
testcase_13 AC 40 ms
8,960 KB
testcase_14 AC 26 ms
8,832 KB
testcase_15 AC 3 ms
7,424 KB
testcase_16 AC 4 ms
7,424 KB
testcase_17 AC 4 ms
7,256 KB
testcase_18 AC 4 ms
7,260 KB
testcase_19 AC 4 ms
7,168 KB
testcase_20 AC 43 ms
12,560 KB
testcase_21 AC 47 ms
13,040 KB
testcase_22 AC 32 ms
10,984 KB
testcase_23 AC 46 ms
12,696 KB
testcase_24 AC 92 ms
18,100 KB
testcase_25 AC 32 ms
11,100 KB
testcase_26 AC 51 ms
13,224 KB
testcase_27 AC 22 ms
9,856 KB
testcase_28 AC 84 ms
18,012 KB
testcase_29 AC 52 ms
13,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<unordered_map>
#include<cstdio>
#include<cstring>
#include<cmath>
using namespace std;
int n,a[1000500],c[1000500],f[1000500],ans=0;
unordered_map<int,int>last;
const int mod=1e9+7;
int main() {
    ios::sync_with_stdio(0);
    int n,m;
    cin>>n;
    for(int i=1;i<=n;i++){
    	cin>>c[i];
    	a[i]=a[i-1]^c[i];
	}
	ans=0;
    memset(f,0,sizeof(f));
    last[0]=0;
    f[0]=1;
    for(int i=1;i<=n;i++) {
        if(last[a[i]]-1<0)f[i]=(2ll*f[i-1])%mod;
        else f[i]=(2ll*f[i-1]-f[last[a[i]]-1]+mod)%mod;
        last[a[i]]=i;
    }
    ans=(f[n-1]%mod+mod)%mod;
    cout<<ans<<endl;
    return 0;
}
0