cf(数学思维题)

202 篇文章 0 订阅
42 篇文章 0 订阅

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 12,..., k, the second block will be formed by digits from the phone number that are on positions k + 1k + 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 c1c2,...,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 0001 ≤ 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
input
8 2
1 22 3 44
5 4 3 2
output
32400
Note

In the first test sample good phone numbers are: 000000000098005600005698380000380098385600385698.



题意是输入n,k,n表示要得到一串n个数字的号码,k表示要将这段号码分成若干段每一段k个数字,接下来输入n/k个数字,分别表示每一段的数字要是能整出这个数的k位数字,接下来再输入n/k个数字,表示该段数字不能以bi数字开头。

然后,就靠自己的思维去想了,其实是水题。。(求乘方的函数最好自己写,pow如果哪里搞错了我们连查错都无从下手)

#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include<string.h>
#include<algorithm>
#define mod 1000000007
using namespace std;
typedef long long ll;

ll a[100010],b[100010];

ll cf(ll x)
{
    ll s=1;
    for(int i=0;i<x;i++)
        s*=10;
    return s;
}

int main()
{
    ll k,n;
    cin>>n>>k;
    for(ll i=0;i<n/k;i++)
        cin>>a[i];
    for(ll i=0;i<n/k;i++)
        cin>>b[i];
    ll cc=cf(k)-1,s=1;
    for(int i=0;i<n/k;i++)
    {
        int tt,t0;
        if(b[i]*cf(k-1)%a[i]==0)
            tt=b[i]*cf(k-1)/a[i]-1;
        else tt=b[i]*cf(k-1)/a[i];
        if((b[i]+1)*cf(k-1)%a[i]==0)
            t0=(b[i]+1)*cf(k-1)/a[i]-1;
        else t0=(b[i]+1)*cf(k-1)/a[i];
        int tem=cc/a[i]-(t0-tt);
        tem++;
        tem%=mod;//cout<<tem<<endl;
        s*=tem;
        s%=mod;//cout<<"s  "<<s<<endl;
    }
    cout<<s<<endl;
    return 0;
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值