結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 187 ms
16,000 KB
testcase_04 AC 184 ms
16,000 KB
testcase_05 AC 192 ms
16,128 KB
testcase_06 AC 188 ms
16,000 KB
testcase_07 AC 183 ms
16,000 KB
testcase_08 AC 184 ms
16,000 KB
testcase_09 AC 186 ms
15,872 KB
testcase_10 AC 189 ms
16,000 KB
testcase_11 AC 185 ms
15,872 KB
testcase_12 AC 185 ms
15,872 KB
testcase_13 AC 92 ms
6,940 KB
testcase_14 AC 36 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 90 ms
9,728 KB
testcase_21 AC 105 ms
10,880 KB
testcase_22 AC 72 ms
8,576 KB
testcase_23 AC 92 ms
9,984 KB
testcase_24 AC 174 ms
15,488 KB
testcase_25 AC 66 ms
8,448 KB
testcase_26 AC 110 ms
11,264 KB
testcase_27 AC 44 ms
6,940 KB
testcase_28 AC 165 ms
14,848 KB
testcase_29 AC 112 ms
11,520 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