B. Pasha and Phone
 

Pasha has recently bought a new phone jPager and started adding his friends' phone numbers there. Each phone number consists of exactly n digits.

Also Pasha has a number k and two sequences of length n / k (n is divisible by ka1, a2, ..., an / k and b1, b2, ..., bn / k. Let's split the phone number into blocks of length k. The first block will be formed by digits from the phone number that are on positions 1, 2,..., k, the second block will be formed by digits from the phone number that are on positions k + 1, k + 2, ..., 2·k and so on. Pasha considers a phone number good, if the i-th block doesn't start from the digit bi and is divisible by ai if represented as an integer.

To represent the block of length k as an integer, let's write it out as a sequence c1, c2,...,ck. Then the integer is calculated as the result of the expression c1·10k - 1 + c2·10k - 2 + ... + ck.

Pasha asks you to calculate the number of good phone numbers of length n, for the given kai and bi. As this number can be too big, print it modulo 109 + 7.

Input

The first line of the input contains two integers n and k (1 ≤ n ≤ 100 000, 1 ≤ k ≤ min(n, 9)) — the length of all phone numbers and the length of each block, respectively. It is guaranteed that n is divisible by k.

The second line of the input contains n / k space-separated positive integers — sequence a1, a2, ..., an / k (1 ≤ ai < 10k).

The third line of the input contains n / k space-separated positive integers — sequence b1, b2, ..., bn / k (0 ≤ bi ≤ 9).

Output

Print a single integer — the number of good phone numbers of length n modulo 109 + 7.

Sample test(s)
input
6 2
38 56 49
7 3 4
output
8
 
Note

In the first test sample good phone numbers are: 000000, 000098, 005600, 005698, 380000, 380098, 385600, 385698.

题意:给你n,k,n个ai,n个bi,  对于所有能整除ai的数中 位数小于等于k位,且最高位开头不以bi开头的数有几个,再取随机组合数

例:k=2     5是以0开头,不是以5开头

题解:我们可以算出1到n是x的倍数的个数有n/x个,那么减去一些不需要的数就是容斥了了,

///
#include<bits/stdc++.h>
using namespace std ;
typedef long long ll;
#define mem(a) memset(a,0,sizeof(a))
#define meminf(a) memset(a,127,sizeof(a)); inline ll read()
{
ll x=,f=;char ch=getchar();
while(ch<''||ch>''){
if(ch=='-')f=-;ch=getchar();
}
while(ch>=''&&ch<=''){
x=x*+ch-'';ch=getchar();
}return x*f;
}
//****************************************
const double PI = 3.1415926535897932384626433832795;
const double EPS = 5e-;
#define maxn 100000+500
#define mod 1000000007 ll num[maxn],a[maxn],b[maxn],kk; int main(){
ll n=read(),k=read();
ll tmp=; kk=k;
for(int i=;i<=k;i++)tmp*=; for(int i=;i<=n/kk;i++){
scanf("%I64d",&a[i]);
}
for(int i=;i<=n/kk;i++){
scanf("%I64d",&b[i]);
}
for(ll i=;i<=n/kk;i++){
num[i]=;
if(b[i]){
int T=;
for(int j=;j<=kk-;j++)b[i]*=,T*=;
ll H=(b[i]+(T-))/a[i]-(b[i]-)/a[i];
num[i]+=(tmp-)/a[i]-H;
}
else {
num[i]+=(tmp-)/a[i]-(tmp/-)/a[i];
}
if(b[i]==)num[i]--;
}
ll ans=;
for(int i=;i<=n/kk;i++){
ans=(ans*num[i])%mod;
}
cout<<ans<<endl;
return ;
}

代码

最新文章

  1. Constraint2:constraint
  2. oracle 根据字段分组后,将组内的数据根据字段排序
  3. Hermes实时检索分析平台
  4. The str method
  5. Basic knowledge of javaScript (keep for myself)
  6. Computer Science Theory for the Information Age-6: 学习理论——VC定理的证明
  7. linux mail 配置
  8. Demo学习: ColumnSort
  9. BZOJ 3262 陌上花开 CDQ分治
  10. 向html某个元素中添加信息
  11. 打包静默安装参数(nsis,msi,InstallShield,InnoSetup)
  12. 最多两次股票交易-Best Time to Buy and Sell Stock III
  13. 关于制作C语言头文件的思考
  14. [译]课程 1: 使用 Quartz
  15. java调用python的惨痛史(无法获取环境变量)
  16. 使用telnet模拟邮件的收发
  17. yyyy-MM-dd 转换为年月日
  18. Luogu 3421 [POI2005]SKO-Knights - Exgcd
  19. 使用重绘项美化WinForm中的控件
  20. C语言文法推导

热门文章

  1. 笨拙而诡异的 Oracle(之二)
  2. [ BZOJ 3038 &amp; 3211 / SPOJ GSS4 ] 上帝造题七分钟2 / 花神游历各国
  3. 在已有spring的基础上集成hibernate
  4. Kotlin实例----android5.0新特性之palette
  5. JS高级——歌曲管理
  6. C#当中的out关键字(借鉴于CSDN)
  7. oracle数据库视图,序列,索引的sql语句查看
  8. CSS练习:仿小米官网
  9. 亚马逊免费服务器搭建Discuz!论坛过程(四)
  10. 4 pandas模块,Series类