UVA 1640 The Counting Problem

Posted 日拱一卒 功不唐捐

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVA 1640 The Counting Problem相关的知识,希望对你有一定的参考价值。

https://vjudge.net/problem/UVA-1640

 

题意:统计区间[l,r]中0——9的出现次数

 

数位DP

注意删除前导0

 

#include<cmath>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int ans[10],a[10],dp[10][10],bit[10];
int dfs(int dep,int ty,bool lim,int k)
{
    if(!dep) return ty;
    if(!lim && dp[dep][ty]!=-1) return dp[dep][ty];
    int ans=0,up= lim ? a[dep] : 9;
    for(int i=0;i<=up;i++)
    {
        if(i==k) ans+=dfs(dep-1,ty+1,lim && i==up,k);
        else ans+=dfs(dep-1,ty,lim && i==up,k);
    }
    if(!lim) dp[dep][ty]=ans;
    return ans;
}
int main()
{
    int l,r;
    bit[1]=10;
    for(int i=2;i<=8;i++) bit[i]=bit[i-1]*10;
    while(scanf("%d%d",&l,&r)!=EOF)
    {
        if(!l) return 0;
        if(l>r) swap(l,r);
        memset(ans,0,sizeof(ans));
        a[0]=0; 
        while(r) a[++a[0]]=r%10,r/=10;
        for(int i=0;i<=9;i++) 
        {
            memset(dp,-1,sizeof(dp));
            ans[i]=dfs(a[0],0,1,i);
        }
        l--; if(!l) ans[0]--;
        int tmp=a[0];
        a[0]=0; 
        while(l) a[++a[0]]=l%10,l/=10;
        for(int i=0;i<=9;i++) 
        {
            memset(dp,-1,sizeof(dp));
            ans[i]-=dfs(a[0],0,1,i);
        }
        while(tmp!=a[0]) ans[0]-=bit[--tmp]; 
        printf("%d",ans[0]);
        for(int i=1;i<=9;i++) printf(" %d",ans[i]);
        printf("\n");
    }
}

 

以上是关于UVA 1640 The Counting Problem的主要内容,如果未能解决你的问题,请参考以下文章

UVA 1640 The Counting Problem UVA1640 求[a,b]或者[b,a]区间内0~9在里面各个数的数位上出现的总次数。

Uva1640(统计数字出现的次数)

UVa 1225 Digit Counting --- 水题

UVA10502 Counting Rectangles水题

Digit Counting UVA - 1225

UVA 1225 Digit Counting(统计数位出现的次数)