A10682 | Byteland coins
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ types of coins in Byteland. Conveniently, the denomination of the coin type $k$ divides the denomination of the coin type $k+1$ , the denomination of the coin type $1$ equals $1$ tugrick. The ratio of the denominations of coin types $k+1$ and $k$ equals $a_{k}$ . It is known that for each $x$ there are at most 20 coin types of denomination $x$ .
Byteasar has $b_{k}$ coins of type $k$ with him, and he needs to pay exactly $m$ tugricks. It is known that Byteasar never has more than $3·10^{5}$ coins with him. Byteasar want to know how many ways there are to pay exactly $m$ tugricks. Two ways are different if there is an integer $k$ such that the amount of coins of type $k$ differs in these two ways. As all Byteland citizens, Byteasar wants to know the number of ways modulo $10^{9}+7$ .
Byteasar has $b_{k}$ coins of type $k$ with him, and he needs to pay exactly $m$ tugricks. It is known that Byteasar never has more than $3·10^{5}$ coins with him. Byteasar want to know how many ways there are to pay exactly $m$ tugricks. Two ways are different if there is an integer $k$ such that the amount of coins of type $k$ differs in these two ways. As all Byteland citizens, Byteasar wants to know the number of ways modulo $10^{9}+7$ .
输入格式
The first line contains single integer $n$ ( $1<=n<=3·10^{5}$ ) — the number of coin types.
The second line contains $n-1$ integers $a_{1}$ , $a_{2}$ , $...$ , $a_{n-1}$ ( $1<=a_{k}<=10^{9}$ ) — the ratios between the coin types denominations. It is guaranteed that for each $x$ there are at most 20 coin types of denomination $x$ .
The third line contains $n$ non-negative integers $b_{1}$ , $b_{2}$ , $...$ , $b_{n}$ — the number of coins of each type Byteasar has. It is guaranteed that the sum of these integers doesn't exceed $3·10^{5}$ .
The fourth line contains single integer $m$ ( $0<=m<10^{10000}$ ) — the amount in tugricks Byteasar needs to pay.
The second line contains $n-1$ integers $a_{1}$ , $a_{2}$ , $...$ , $a_{n-1}$ ( $1<=a_{k}<=10^{9}$ ) — the ratios between the coin types denominations. It is guaranteed that for each $x$ there are at most 20 coin types of denomination $x$ .
The third line contains $n$ non-negative integers $b_{1}$ , $b_{2}$ , $...$ , $b_{n}$ — the number of coins of each type Byteasar has. It is guaranteed that the sum of these integers doesn't exceed $3·10^{5}$ .
The fourth line contains single integer $m$ ( $0<=m<10^{10000}$ ) — the amount in tugricks Byteasar needs to pay.
输出格式
Print single integer — the number of ways to pay exactly $m$ tugricks modulo $10^{9}+7$ .
输入输出样例
输入 #1
1 4 2
输出 #1
1
输入 #2
2 1 4 4 2
输出 #2
3
输入 #3
3 3 3 10 10 10 17
输出 #3
6
In the first example Byteasar has $4$ coins of denomination $1$ , and he has to pay $2$ tugricks. There is only one way.
In the second example Byteasar has $4$ coins of each of two different types of denomination $1$ , he has to pay $2$ tugricks. There are $3$ ways: pay one coin of the first type and one coin of the other, pay two coins of the first type, and pay two coins of the second type.
In the third example the denominations are equal to $1$ , $3$ , $9$ .
In the second example Byteasar has $4$ coins of each of two different types of denomination $1$ , he has to pay $2$ tugricks. There are $3$ ways: pay one coin of the first type and one coin of the other, pay two coins of the first type, and pay two coins of the second type.
In the third example the denominations are equal to $1$ , $3$ , $9$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted