UVa11038 How Many O's? (计数)

Description

Download as PDF

Problem E: How many 0's?

A Benedict monk No. 16 writes down the decimal representations of all natural numbers between and including  m  and  n m  ≤  n . How many 0's will he write down?

Input consists of a sequence of lines. Each line contains two unsigned 32-bit integers m and nm ≤ n. The last line of input has the value of m negative and this line should not be processed.

For each line of input print one line of output with one integer number giving the number of 0's written down by the monk.

Sample input

10 11
100 200
0 500
1234567890 2345678901
0 4294967295
-1 -1
Output for sample input
1
22
92
987654304
3825876150
题意: 求[n, m]之间包含0的数字的个数
思路:先转化为前缀问题,就是cal(m)-cal(n-1),枚举每一位,如果第i位是0的话,那么为了不让数大于原本的数的话,那么它的左边取[1, a-1]的时候,右边可以取任意值
如果取a的话,那么只能取0到右边的最大;如果是非0的话,那么让这位为0的话,就可以左边随便取,右边随便取
#include <iostream>
#include <cstdio>
#include <cstring>
typedef long long LL;
using namespace std;
LL n,m;

LL cal(LL x)
{
    if(x<0)
        return 0;
    LL ans=1,cnt=1,tmp=0;
    while(x>=10)
    {
        LL cur=x%10;
        x/=10;
        if(cur)
            ans+=x*cnt;
        else
            ans+=(x-1)*cnt+tmp+1;
        tmp+=cur*cnt;
        cnt*=10;
    }
    return ans;
}

int main()
{
    while(~scanf("%lld%lld",&m,&n))
    {
        if(n==-1&&m==-1)
            break;
        printf("%lld\n",cal(n)-cal(m-1));
    }
    return 0;
}


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值