A11709 | Alternating Sum
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given two integers $a$ and $b$ . Moreover, you are given a sequence $s_0, s_1, \dots, s_{n}$ . All values in $s$ are integers $1$ or $-1$ . It's known that sequence is $k$ -periodic and $k$ divides $n+1$ . In other words, for each $k \leq i \leq n$ it's satisfied that $s_{i} = s_{i - k}$ .
Find out the non-negative remainder of division of $\sum \limits_{i=0}^{n} s_{i} a^{n - i} b^{i}$ by $10^{9} + 9$ .
Note that the modulo is unusual!
Find out the non-negative remainder of division of $\sum \limits_{i=0}^{n} s_{i} a^{n - i} b^{i}$ by $10^{9} + 9$ .
Note that the modulo is unusual!
输入格式
The first line contains four integers $n, a, b$ and $k$ $(1 \leq n \leq 10^{9}, 1 \leq a, b \leq 10^{9}, 1 \leq k \leq 10^{5})$ .
The second line contains a sequence of length $k$ consisting of characters '+' and '-'.
If the $i$ -th character (0-indexed) is '+', then $s_{i} = 1$ , otherwise $s_{i} = -1$ .
Note that only the first $k$ members of the sequence are given, the rest can be obtained using the periodicity property.
The second line contains a sequence of length $k$ consisting of characters '+' and '-'.
If the $i$ -th character (0-indexed) is '+', then $s_{i} = 1$ , otherwise $s_{i} = -1$ .
Note that only the first $k$ members of the sequence are given, the rest can be obtained using the periodicity property.
输出格式
Output a single integer — value of given expression modulo $10^{9} + 9$ .
输入输出样例
输入 #1
2 2 3 3 +-+
输出 #1
7
输入 #2
4 1 5 1 -
输出 #2
999999228
In the first example:
$(\sum \limits_{i=0}^{n} s_{i} a^{n - i} b^{i})$ = $2^{2} 3^{0} - 2^{1} 3^{1} + 2^{0} 3^{2}$ = 7
In the second example:
$(\sum \limits_{i=0}^{n} s_{i} a^{n - i} b^{i}) = -1^{4} 5^{0} - 1^{3} 5^{1} - 1^{2} 5^{2} - 1^{1} 5^{3} - 1^{0} 5^{4} = -781 \equiv 999999228 \pmod{10^{9} + 9}$ .
$(\sum \limits_{i=0}^{n} s_{i} a^{n - i} b^{i})$ = $2^{2} 3^{0} - 2^{1} 3^{1} + 2^{0} 3^{2}$ = 7
In the second example:
$(\sum \limits_{i=0}^{n} s_{i} a^{n - i} b^{i}) = -1^{4} 5^{0} - 1^{3} 5^{1} - 1^{2} 5^{2} - 1^{1} 5^{3} - 1^{0} 5^{4} = -781 \equiv 999999228 \pmod{10^{9} + 9}$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted