結果

問題 No.1493 隣接xor
ユーザー 沙耶花沙耶花
提出日時 2021-04-30 21:55:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 803 bytes
コンパイル時間 4,182 ms
コンパイル使用メモリ 273,020 KB
実行使用メモリ 28,672 KB
最終ジャッジ日時 2024-07-19 01:19:57
合計ジャッジ時間 12,452 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 431 ms
28,672 KB
testcase_04 AC 433 ms
28,672 KB
testcase_05 AC 436 ms
28,672 KB
testcase_06 AC 443 ms
28,672 KB
testcase_07 AC 452 ms
28,672 KB
testcase_08 AC 436 ms
28,672 KB
testcase_09 AC 435 ms
28,672 KB
testcase_10 AC 451 ms
28,672 KB
testcase_11 AC 455 ms
28,672 KB
testcase_12 AC 441 ms
28,672 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 197 ms
16,512 KB
testcase_21 AC 228 ms
18,048 KB
testcase_22 AC 152 ms
13,952 KB
testcase_23 AC 203 ms
16,512 KB
testcase_24 AC 428 ms
27,776 KB
testcase_25 AC 150 ms
13,696 KB
testcase_26 AC 257 ms
18,944 KB
testcase_27 AC 90 ms
9,856 KB
testcase_28 AC 398 ms
26,368 KB
testcase_29 AC 259 ms
19,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint1000000007;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000

mint op(mint a,mint b){
	return a+b;
}

mint e(){
	return 0;
}

int main(){
	
	int N;
	cin>>N;
	
	vector<int> A(N);
	rep(i,N){
		cin>>A[i];
	}
	
	rep(i,N-1){
		A[i+1] ^= A[i];
	}
	
	map<int,vector<int>> mp;
	
	rep(i,N){
		if(mp[A[i]].size()==0){
			mp[A[i]].push_back(0);
		}
		mp[A[i]].push_back(i+1);
	}
	
	segtree<mint,op,e> seg(N+1);
	seg.set(0,1);
	
	rep(i,N){
		int d = distance(mp[A[i]].begin(),lower_bound(mp[A[i]].begin(),mp[A[i]].end(),i+1));
		int ind = mp[A[i]][d-1];
		seg.set(i+1,seg.prod(ind,i+1));
	}
	
	mint ans = seg.get(N);
	
	cout<<ans.val()<<endl;
	
	
    return 0;
}
0