結果

問題 No.1493 隣接xor
ユーザー the-xinthe-xin
提出日時 2021-07-13 12:17:25
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 684 bytes
コンパイル時間 1,809 ms
コンパイル使用メモリ 175,048 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-07-02 12:59:54
合計ジャッジ時間 6,592 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 RE -
testcase_03 AC 212 ms
14,976 KB
testcase_04 AC 208 ms
14,976 KB
testcase_05 AC 204 ms
14,976 KB
testcase_06 AC 211 ms
14,976 KB
testcase_07 AC 203 ms
14,976 KB
testcase_08 AC 205 ms
14,976 KB
testcase_09 AC 206 ms
15,104 KB
testcase_10 AC 217 ms
14,976 KB
testcase_11 AC 203 ms
14,976 KB
testcase_12 AC 203 ms
14,976 KB
testcase_13 AC 92 ms
5,760 KB
testcase_14 AC 35 ms
5,632 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 91 ms
9,216 KB
testcase_21 AC 114 ms
10,112 KB
testcase_22 AC 73 ms
8,064 KB
testcase_23 AC 95 ms
9,472 KB
testcase_24 AC 197 ms
14,464 KB
testcase_25 AC 71 ms
7,936 KB
testcase_26 AC 116 ms
10,496 KB
testcase_27 AC 45 ms
6,272 KB
testcase_28 AC 178 ms
13,824 KB
testcase_29 AC 124 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using std::cin;
using std::cout;
using std::endl;
using std::vector;
using ll = long long;
const ll mod = 1e9+7;
#define rep(i,j,k) for(int i=int(j); i<int(k); i++)
#define REP(i,j,k) for(int i=int(j); i<=int(k); i++)

int main(){
    int N; cin >> N;
    vector<int> A(N), B(N+1);
    std::map<int,int> mem;
    rep(i,0,N){
        cin >> A[i];
        B[i+1] = A[i]^B[i];
    }
    vector<int> dp(N);
    REP(i,1,N){
    	if(i==1)dp[1]=1;
    	else{
    		dp[i] = dp[i-1]*2%mod;
        if(mem.count(B[i])){
            dp[i] -= dp[mem[B[i]]-1];
            if(dp[i] < 0) dp[i] += mod;
        	}
		}
        mem[B[i]] = i;
    }
    cout << dp[N] << endl;
}
0