A10229 | Wet Shark and Blocks
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $b$ blocks of digits. Each one consisting of the same $n$ digits, which are given to you in the input. Wet Shark must choose exactly one digit from each block and concatenate all of those digits together to form one large integer. For example, if he chooses digit $1$ from the first block and digit $2$ from the second block, he gets the integer $12$ .
Wet Shark then takes this number modulo $x$ . Please, tell him how many ways he can choose one digit from each block so that he gets exactly $k$ as the final result. As this number may be too large, print it modulo $10^{9}+7$ .
Note, that the number of ways to choose some digit in the block is equal to the number of it's occurrences. For example, there are $3$ ways to choose digit $5$ from block 3 5 6 7 8 9 5 1 1 1 1 5.
Wet Shark then takes this number modulo $x$ . Please, tell him how many ways he can choose one digit from each block so that he gets exactly $k$ as the final result. As this number may be too large, print it modulo $10^{9}+7$ .
Note, that the number of ways to choose some digit in the block is equal to the number of it's occurrences. For example, there are $3$ ways to choose digit $5$ from block 3 5 6 7 8 9 5 1 1 1 1 5.
输入格式
The first line of the input contains four space-separated integers, $n$ , $b$ , $k$ and $x$ ( $2<=n<=50000,1<=b<=10^{9},0<=k<x<=100,x>=2$ ) — the number of digits in one block, the number of blocks, interesting remainder modulo $x$ and modulo $x$ itself.
The next line contains $n$ space separated integers $a_{i}$ ( $1<=a_{i}<=9$ ), that give the digits contained in each block.
The next line contains $n$ space separated integers $a_{i}$ ( $1<=a_{i}<=9$ ), that give the digits contained in each block.
输出格式
Print the number of ways to pick exactly one digit from each blocks, such that the resulting integer equals $k$ modulo $x$ .
输入输出样例
输入 #1
12 1 5 10 3 5 6 7 8 9 5 1 1 1 1 5
输出 #1
3
输入 #2
3 2 1 2 6 2 2
输出 #2
0
输入 #3
3 2 1 2 3 1 2
输出 #3
6
In the second sample possible integers are $22$ , $26$ , $62$ and $66$ . None of them gives the remainder $1$ modulo $2$ .
In the third sample integers $11$ , $13$ , $21$ , $23$ , $31$ and $33$ have remainder $1$ modulo $2$ . There is exactly one way to obtain each of these integers, so the total answer is $6$ .
In the third sample integers $11$ , $13$ , $21$ , $23$ , $31$ and $33$ have remainder $1$ modulo $2$ . There is exactly one way to obtain each of these integers, so the total answer is $6$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted