結果

問題 No.1493 隣接xor
ユーザー 草苺奶昔草苺奶昔
提出日時 2024-02-16 01:29:57
言語 Go
(1.22.1)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 1,401 bytes
コンパイル時間 14,751 ms
コンパイル使用メモリ 230,420 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-09-28 19:11:17
合計ジャッジ時間 18,534 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 138 ms
13,956 KB
testcase_04 AC 136 ms
13,952 KB
testcase_05 AC 137 ms
14,848 KB
testcase_06 AC 136 ms
14,848 KB
testcase_07 AC 134 ms
13,832 KB
testcase_08 AC 140 ms
14,848 KB
testcase_09 AC 132 ms
13,828 KB
testcase_10 AC 131 ms
13,824 KB
testcase_11 AC 134 ms
13,828 KB
testcase_12 AC 138 ms
14,848 KB
testcase_13 AC 99 ms
9,888 KB
testcase_14 AC 59 ms
6,816 KB
testcase_15 AC 1 ms
6,816 KB
testcase_16 AC 1 ms
6,816 KB
testcase_17 AC 1 ms
6,816 KB
testcase_18 AC 1 ms
6,820 KB
testcase_19 AC 1 ms
6,816 KB
testcase_20 AC 70 ms
8,292 KB
testcase_21 AC 86 ms
12,900 KB
testcase_22 AC 56 ms
7,908 KB
testcase_23 AC 71 ms
8,288 KB
testcase_24 AC 129 ms
13,828 KB
testcase_25 AC 54 ms
8,804 KB
testcase_26 AC 89 ms
12,516 KB
testcase_27 AC 33 ms
6,816 KB
testcase_28 AC 120 ms
13,576 KB
testcase_29 AC 88 ms
12,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
)

func main() {
	yuki1493()
}

const MOD int = 1e9 + 7

// https://yukicoder.me/problems/no/1493
// 给定一个长度为n的数组,每次可以将相邻的两个数换成xor
// 问可以得到的数组的个数模1e9+7
func yuki1493() {
	in := bufio.NewReader(os.Stdin)
	out := bufio.NewWriter(os.Stdout)
	defer out.Flush()

	var n int
	fmt.Fscan(in, &n)
	nums := make([]int, n)
	for i := 0; i < n; i++ {
		fmt.Fscan(in, &nums[i])
	}
	for i := 0; i < n-1; i++ {
		nums[i+1] ^= nums[i]
	}
	nums = nums[:n-1]
	res := CountSubSequence(nums, MOD)
	res = (res + 1) % MOD // 空集
	fmt.Fprintln(out, res)
}

func CountSubSequence(seq []int, mod int) int {
	n := len(seq)
	dp := make([]int, n+1)
	dp[0] = 1
	last := make(map[int]int32)
	for i, c := range seq {
		dp[i+1] = 2 * dp[i] % mod
		if v, ok := last[c]; ok {
			dp[i+1] -= dp[v]
			if dp[i+1] < 0 {
				dp[i+1] += mod
			}
		}
		last[c] = int32(i)
	}
	res := (dp[n] - 1) % mod
	if res < 0 {
		res += mod
	}
	return res
}

func CountSubSequenceString(seq string, mod int) int {
	n := len(seq)
	dp := make([]int, n+1)
	dp[0] = 1
	last := make(map[rune]int32)
	for i, c := range seq {
		dp[i+1] = 2 * dp[i] % mod
		if v, ok := last[c]; ok {
			dp[i+1] -= dp[v]
			if dp[i+1] < 0 {
				dp[i+1] += mod
			}
		}
		last[c] = int32(i)
	}
	res := (dp[n] - 1) % mod
	if res < 0 {
		res += mod
	}
	return res
}
0