light oj 1140 - How Many Zeroes?

1140 - How Many Zeroes?
Time Limit: 2 second(s)Memory Limit: 32 MB

Jimmy writes down the decimal representations of all natural numbers between and including m and n, (m ≤ n). How many zeroes will he write down?

Input

Input starts with an integer T (≤ 11000), denoting the number of test cases.

Each case contains two unsigned 32-bit integers m and n, (m ≤ n).

Output

For each case, print the case number and the number of zeroes written down by Jimmy.

Sample Input

Output for Sample Input

5

10 11

100 200

0 500

1234567890 2345678901

0 4294967295

Case 1: 1

Case 2: 22

Case 3: 92

Case 4: 987654304

Case 5: 3825876150



数位DP。
dp[pos][sum][pre]:当位数为pos时,0的个数(不含前缀0)为sum,pre判断是否为前缀0.
#include <iostream>
#include<string.h>
using namespace std;
long long dp[20][20][2];
int dight[20];
long long dfs(int pos,int sum,bool pre,bool flag)
{    int i;
  long long ans=0;
    if(pos==-1)return (sum+pre);
    if(!flag&&dp[pos][sum][pre]!=-1)return dp[pos][sum][pre];
    int u=flag?dight[pos]:9;
    for(i=0;i<=u;i++)
       ans=ans+dfs(pos-1,sum+(!pre&&i==0),pre&&i==0,flag&&i==u);
       if(!flag)dp[pos][sum][pre]=ans;
       return ans;
}
long long fun(long long n)
{
    int len=0;
    while(n)
    {
        dight[len++]=n%10;
        n=n/10;
    }
    dfs(len-1,0,1,1);
}
int main()
{
     int t,i;
     long long n,m;
     cin>>t;
     for(i=1;i<=t;i++)
     {    memset(dp,-1,sizeof(dp));
         cin>>n>>m;
         cout<<"Case "<<i<<": ";
         cout<<fun(m)-fun(n-1)<<endl;
     }
    return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值