結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,296 KB
testcase_01 AC 4 ms
7,424 KB
testcase_02 AC 5 ms
7,296 KB
testcase_03 AC 91 ms
18,168 KB
testcase_04 AC 90 ms
18,040 KB
testcase_05 AC 91 ms
18,164 KB
testcase_06 AC 93 ms
18,164 KB
testcase_07 AC 95 ms
18,168 KB
testcase_08 AC 91 ms
18,296 KB
testcase_09 AC 97 ms
18,164 KB
testcase_10 AC 84 ms
18,032 KB
testcase_11 AC 90 ms
18,036 KB
testcase_12 AC 90 ms
18,032 KB
testcase_13 AC 41 ms
8,832 KB
testcase_14 AC 27 ms
8,832 KB
testcase_15 AC 5 ms
7,296 KB
testcase_16 AC 3 ms
7,424 KB
testcase_17 AC 4 ms
7,296 KB
testcase_18 AC 4 ms
7,296 KB
testcase_19 AC 4 ms
7,424 KB
testcase_20 AC 42 ms
12,688 KB
testcase_21 AC 46 ms
13,164 KB
testcase_22 AC 32 ms
10,984 KB
testcase_23 AC 43 ms
12,672 KB
testcase_24 AC 86 ms
18,232 KB
testcase_25 AC 31 ms
10,964 KB
testcase_26 AC 50 ms
13,356 KB
testcase_27 AC 22 ms
9,856 KB
testcase_28 AC 88 ms
17,888 KB
testcase_29 AC 49 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));
    f[0]=1;
    for(int i=1;i<=n;i++) {
        if(!last[a[i]])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