結果

問題 No.1493 隣接xor
ユーザー mortalmortal
提出日時 2022-01-23 12:19:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 1,859 ms
コンパイル使用メモリ 173,456 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-11-29 10:42:37
合計ジャッジ時間 7,597 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 193 ms
15,872 KB
testcase_04 AC 199 ms
16,000 KB
testcase_05 AC 194 ms
15,872 KB
testcase_06 AC 193 ms
15,872 KB
testcase_07 AC 198 ms
15,872 KB
testcase_08 AC 200 ms
16,000 KB
testcase_09 AC 250 ms
16,000 KB
testcase_10 AC 201 ms
15,872 KB
testcase_11 AC 196 ms
15,872 KB
testcase_12 AC 194 ms
15,872 KB
testcase_13 AC 94 ms
6,400 KB
testcase_14 AC 36 ms
6,400 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 105 ms
9,728 KB
testcase_21 AC 119 ms
10,752 KB
testcase_22 AC 80 ms
8,576 KB
testcase_23 AC 103 ms
9,984 KB
testcase_24 AC 210 ms
15,488 KB
testcase_25 AC 73 ms
8,448 KB
testcase_26 AC 126 ms
11,136 KB
testcase_27 AC 45 ms
6,656 KB
testcase_28 AC 189 ms
14,592 KB
testcase_29 AC 123 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define ll long long int
#define mod 1000000007



int main() {
	int t=1;
	//cin>>t;
	assert(t>=1&&t<=10);
	while(t--){
		int n,i,j;
		cin>>n;
		//assert(n>=1&&n<=100000);
		int a[n];
		int b[n+1];
		b[0]=0;
		for(i=0;i<n;i++){
			cin>>a[i];
			//assert(a[i]>=0&&a[i]<=1000000000);
			b[i+1]=b[i]^a[i];
		}
		map<int,int>m;
		ll dp[n];
		dp[0]=1;
		for(i=1;i<n;i++){
			dp[i]=(dp[i-1]*2)%mod;
			if(m.find(b[i])!=m.end()){
				dp[i]=(dp[i]-dp[m[b[i]]-1]+mod)%mod;

			}
			m[b[i]]=i;

		}
		cout<<dp[n-1]%mod<<"\n";



	}
	
}
0