結果

問題 No.1493 隣接xor
ユーザー chineristACchineristAC
提出日時 2021-04-30 21:59:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 1,901 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 123,740 KB
最終ジャッジ日時 2024-07-19 01:26:46
合計ジャッジ時間 7,968 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
56,064 KB
testcase_01 AC 53 ms
55,936 KB
testcase_02 AC 53 ms
56,064 KB
testcase_03 AC 311 ms
123,232 KB
testcase_04 AC 312 ms
123,364 KB
testcase_05 AC 313 ms
123,236 KB
testcase_06 AC 318 ms
123,356 KB
testcase_07 AC 313 ms
123,364 KB
testcase_08 AC 297 ms
123,616 KB
testcase_09 AC 305 ms
123,488 KB
testcase_10 AC 312 ms
123,740 KB
testcase_11 AC 313 ms
123,740 KB
testcase_12 AC 311 ms
123,480 KB
testcase_13 AC 282 ms
107,136 KB
testcase_14 AC 273 ms
107,904 KB
testcase_15 AC 53 ms
56,064 KB
testcase_16 AC 52 ms
55,808 KB
testcase_17 AC 52 ms
56,064 KB
testcase_18 AC 52 ms
55,808 KB
testcase_19 AC 52 ms
55,936 KB
testcase_20 AC 216 ms
114,304 KB
testcase_21 AC 219 ms
115,456 KB
testcase_22 AC 197 ms
106,624 KB
testcase_23 AC 216 ms
114,688 KB
testcase_24 AC 307 ms
122,880 KB
testcase_25 AC 190 ms
103,680 KB
testcase_26 AC 224 ms
115,584 KB
testcase_27 AC 161 ms
94,592 KB
testcase_28 AC 293 ms
119,292 KB
testcase_29 AC 234 ms
115,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegmentTree:
    def __init__(self, init_val, segfunc, ide_ele):
        n = len(init_val)
        self.segfunc = segfunc
        self.ide_ele = ide_ele
        self.num = 1 << (n - 1).bit_length()
        self.tree = [ide_ele] * 2 * self.num
        self.size = n
        for i in range(n):
            self.tree[self.num + i] = init_val[i]
        for i in range(self.num - 1, 0, -1):
            self.tree[i] = self.segfunc(self.tree[2 * i], self.tree[2 * i + 1])

    def update(self, k, x):
        k += self.num
        self.tree[k] += x
        while k > 1:
            self.tree[k >> 1] = self.segfunc(self.tree[k], self.tree[k ^ 1])
            k >>= 1

    def query(self, l, r):
        if r==self.size:
            r = self.num

        res = self.ide_ele

        l += self.num
        r += self.num
        while l < r:
            if l & 1:
                res = self.segfunc(res, self.tree[l])
                l += 1
            if r & 1:
                res = self.segfunc(res, self.tree[r - 1])
            l >>= 1
            r >>= 1
        return res

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd,log

input = lambda :sys.stdin.buffer.readline()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

mod = 10**9 + 7

N = int(input())
A = li()

xor = [A[i] for i in range(N)]
for i in range(1,N):
    xor[i] ^= xor[i-1]

next_idx = [-1 for i in range(N+1)]
memo = {val:N for val in xor}
for i in range(N-1,-1,-1):
    val = xor[i]
    next_idx[i] = memo[val]
    memo[val] = i

dp = SegmentTree([0]*(N+1),lambda x,y:(x+y)%mod,0)
dp.update(0,1)
for i in range(1,N):
    pre_xor = xor[i-1]
    dp_val = dp.query(0,i+1)

    next = next_idx[i-1]
    dp.update(i,dp_val)
    if next+2<=N:
        dp.update(next+2,-dp_val)



print(dp.query(0,N+1))
0