結果

問題 No.1493 隣接xor
ユーザー kotatsugamekotatsugame
提出日時 2021-04-30 21:39:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 431 bytes
コンパイル時間 718 ms
コンパイル使用メモリ 77,916 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-07-19 00:53:44
合計ジャッジ時間 5,248 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 187 ms
14,592 KB
testcase_04 AC 197 ms
14,592 KB
testcase_05 AC 191 ms
14,592 KB
testcase_06 AC 189 ms
14,464 KB
testcase_07 AC 199 ms
14,592 KB
testcase_08 AC 198 ms
14,592 KB
testcase_09 AC 197 ms
14,592 KB
testcase_10 AC 189 ms
14,592 KB
testcase_11 AC 199 ms
14,464 KB
testcase_12 AC 217 ms
14,592 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 91 ms
9,728 KB
testcase_21 AC 109 ms
10,496 KB
testcase_22 AC 72 ms
8,704 KB
testcase_23 AC 98 ms
9,856 KB
testcase_24 AC 200 ms
14,080 KB
testcase_25 AC 71 ms
8,576 KB
testcase_26 AC 116 ms
10,880 KB
testcase_27 AC 43 ms
7,040 KB
testcase_28 AC 185 ms
13,568 KB
testcase_29 AC 122 ms
11,008 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:9:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    9 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<map>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint1000000007;
int N;
int A[2<<17];
mint dp[2<<17];
main()
{
	cin>>N;
	int now=0;
	dp[0]=1;
	mint sum=1;
	map<int,int>mp;
	mp[now]=0;
	for(int i=0;i<N;i++)
	{
		cin>>A[i];
		now^=A[i];
		int id=-1;
		if(mp.find(now)!=mp.end())id=mp[now];
		mp[now]=i+1;
		sum+=dp[i+1]=sum;
		if(id!=-1)sum-=dp[id];
	}
	cout<<dp[N].val()<<endl;
}
0