結果

問題 No.1493 隣接xor
ユーザー the-xinthe-xin
提出日時 2021-07-12 09:48:57
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 583 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 77,440 KB
実行使用メモリ 15,080 KB
最終ジャッジ日時 2024-07-02 03:22:02
合計ジャッジ時間 3,380 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 82 ms
15,080 KB
testcase_04 AC 84 ms
14,952 KB
testcase_05 AC 84 ms
14,956 KB
testcase_06 AC 84 ms
15,080 KB
testcase_07 AC 88 ms
14,952 KB
testcase_08 AC 78 ms
14,956 KB
testcase_09 AC 83 ms
14,952 KB
testcase_10 AC 79 ms
14,952 KB
testcase_11 AC 81 ms
15,080 KB
testcase_12 AC 86 ms
14,952 KB
testcase_13 AC 39 ms
5,888 KB
testcase_14 AC 29 ms
5,888 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 39 ms
9,088 KB
testcase_21 AC 44 ms
9,708 KB
testcase_22 AC 29 ms
7,616 KB
testcase_23 AC 40 ms
9,356 KB
testcase_24 AC 86 ms
14,900 KB
testcase_25 AC 28 ms
7,460 KB
testcase_26 AC 47 ms
10,016 KB
testcase_27 AC 19 ms
6,272 KB
testcase_28 AC 78 ms
14,908 KB
testcase_29 AC 46 ms
10,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<unordered_map>
using namespace std;
const int N=200005;
const int MOD=1000000007;
int n;
int a[N];
int sum[N];
int f[N];
int main()
{
    scanf("%d",&n);
    for(int i=1;i<=n;i++)
        scanf("%d",&a[i]);
    for(int i=1;i<=n;i++)
        sum[i]=sum[i-1]^a[i];
    unordered_map<int,int>pre;
    f[1]=1;
    for(int i=2;i<=n;i++)
    {
        f[i]=f[i-1]*2%MOD;
        if(pre[sum[i]]-1>=0)
        f[i]=(f[i]-f[pre[sum[i]]-1])%MOD;
        f[i]+=MOD;
        f[i]%=MOD;
        pre[sum[i]]=i;
	}
    printf("%d",f[n]);
    return 0;
}
0