Horse Races (数位dp)

来源:互联网 发布:淘宝整机烈士墙2016 编辑:程序博客网 时间:2024/06/14 00:54

Petya likes horse racing very much. Horses numbered from l to r take part in the races. Petya wants to evaluate the probability of victory; for some reason, to do that he needs to know the amount of nearly lucky horses' numbers. Anearly lucky number is an integer number that has at least two lucky digits the distance between which does not exceedk. Petya learned from some of his mates from Lviv that lucky digits are digits4 and 7. The distance between the digits is the absolute difference between their positions in the number of a horse. For example, ifk = 2, then numbers 412395497, 404, 4070400000070004007 are nearly lucky and numbers4, 4123954997, 4007000040070004007 are not.

Petya prepared t intervals [li, ri] and invented numberk, common for all of them. Your task is to find how many nearly happy numbers there are in each of these segments. Since the answers can be quite large, output them modulo1000000007 (109 + 7).

Input

The first line contains two integers t andk (1 ≤ t, k ≤ 1000) — the number of segments and the distance between the numbers correspondingly. Nextt lines contain pairs of integers li andri (1 ≤ l ≤ r ≤ 101000). All numbers are given without the leading zeroes. Numbers in each line are separated by exactly one space character.

Output

Output t lines. In each line print one integer — the answer for the corresponding segment modulo1000000007 (109 + 7).

Example
Input
1 21 100
Output
4
Input
1 270 77
Output
2
Input
2 11 2080 100
Output
00


题目大概:

找出给定区间内,4和7  或  4和4  或7和7  间隔小于k的数字的个数。

思路:

因为是只要存在便可,没要求数量,所以一般只需判断一次即可,以后遇到4和7,还是直接当什么也每遇到即可。

但是这个数据量大,用字符串输入,最后还要判断最小的数是不是符合条件,符合的话,要加上。


代码:


#include <iostream>#include <cstdio>#include <cstring>using namespace std;int mod=1000000007;int dp[1005][2010];int a[1005];int k;int sove(int pos,int ju,int limit){    if(pos==-1)return ju==0;    if(!limit&&dp[pos][ju]!=-1)return dp[pos][ju];    int end=limit?a[pos]:9;    int ans=0;    for(int i=0;i<=end;i++)    {        int nju=(ju==0?0:ju+1);        if(i==4||i==7)        {            if(ju<=k)nju=0;            else nju=1;        }        ans=(ans+sove(pos-1,nju,limit&&i==end))%mod;    }    if(!limit)dp[pos][ju]=ans;    return ans;}int go(char s[]){    int pos=0;    int l=strlen(s);    for(int i=l-1;i>=0;i--)    {        a[pos++]=s[i]-'0';    }    return sove(pos-1,k+2,1);}int check(char s[]){    int ju=k+1;    for(int i=0;s[i];i++)    {        if(ju==0)break;        if(s[i]=='4'||s[i]=='7')        {            if(ju<=k)ju=0;            else ju=1;        }        else ju++;    }    return ju==0;}int main(){   int t;   scanf("%d%d",&t,&k);   char s1[1005],s2[1005];   memset(dp,-1,sizeof(dp));   while(t--)   {       scanf("%s%s",s1,s2);       int b=go(s2);       int a=go(s1);       if(check(s1))a--;       b=((b-a)%mod+mod)%mod;       printf("%d\n",b);   }    return 0;}



原创粉丝点击