結果

問題 No.1493 隣接xor
ユーザー 草苺奶昔草苺奶昔
提出日時 2023-03-14 09:14:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 154,296 KB
最終ジャッジ日時 2024-09-18 07:54:22
合計ジャッジ時間 6,746 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
66,816 KB
testcase_01 AC 62 ms
66,688 KB
testcase_02 AC 63 ms
66,944 KB
testcase_03 AC 177 ms
154,108 KB
testcase_04 AC 176 ms
154,296 KB
testcase_05 AC 173 ms
153,456 KB
testcase_06 AC 176 ms
153,600 KB
testcase_07 AC 172 ms
154,008 KB
testcase_08 AC 175 ms
154,096 KB
testcase_09 AC 174 ms
153,416 KB
testcase_10 AC 172 ms
153,976 KB
testcase_11 AC 175 ms
153,852 KB
testcase_12 AC 174 ms
154,124 KB
testcase_13 AC 136 ms
123,144 KB
testcase_14 AC 126 ms
115,392 KB
testcase_15 AC 63 ms
66,944 KB
testcase_16 AC 65 ms
66,688 KB
testcase_17 AC 63 ms
67,072 KB
testcase_18 AC 63 ms
66,304 KB
testcase_19 AC 63 ms
66,816 KB
testcase_20 AC 126 ms
115,428 KB
testcase_21 AC 134 ms
121,108 KB
testcase_22 AC 117 ms
106,000 KB
testcase_23 AC 128 ms
115,820 KB
testcase_24 AC 179 ms
153,252 KB
testcase_25 AC 114 ms
103,036 KB
testcase_26 AC 134 ms
122,144 KB
testcase_27 AC 98 ms
89,880 KB
testcase_28 AC 167 ms
145,000 KB
testcase_29 AC 140 ms
121,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
from typing import Any, Sequence


MOD = int(1e9 + 7)


def countSubseq(s: Sequence[Any]) -> int:
    """O(n)求不同子序列个数(非空)"""
    n = len(s)
    dp = [0] * (n + 1)
    dp[0] = 1
    last = dict()
    for i, char in enumerate(s):
        dp[i + 1] = 2 * dp[i] % MOD
        if char in last:
            dp[i + 1] -= dp[last[char]]
        last[char] = i
    return (dp[n] - 1) % MOD


n = int(input())
nums = list(map(int, input().split()))

nums = list(accumulate(nums, lambda x, y: x ^ y))
nums.pop()
print((countSubseq(nums) + 1) % MOD)
0