HDU - 4389 X mod f(x)(数位dp)

4 篇文章 0 订阅

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4389

题目意思:区间内找能整除它各位数字之和的数字的个数。

思路:模数的范围就是0-81,直接枚举每个模数然后用dp存起来。

代码:

#include <bits/stdc++.h>
#define INF 0x3f3f3f3f
#define eps 1e-8
#define lson l, m, rt<<1
#define rson m+1, r, rt<<1|1
using namespace std;
typedef long long LL;
typedef pair<int, int> pii;
const int maxn = 1e5 + 5;
const int mod = 1e9 + 7;

int l,r;
int a[12];
int dp[12][82][82][82];
int dfs(int pos,int sum,int mod,int res,bool limit){
    if (pos==-1) return sum==mod&&res==0;
    if (!limit&&dp[pos][sum][mod][res]!=-1) return dp[pos][sum][mod][res];
    int up=limit?a[pos]:9;
    int tmp=0;
    for (int i=0;i<=up;i++){
        tmp+=dfs(pos-1,sum+i,mod,(res*10+i)%mod,a[pos]==i&&limit);
    }
    if (!limit) dp[pos][sum][mod][res]=tmp;
    return tmp;
}
int solve(int x){
    int pos=0;
    while (x){
        a[pos++]=x%10;
        x/=10;
    }
    int ans=0;
    for (int i=1;i<=81;i++){
        ans+=dfs(pos-1,0,i,0,1);
    }
    return ans;
}
int t;
int k=0;
int main() {
    scanf ("%d",&t);
    memset(dp,-1,sizeof(dp));
    while (t--){
        int l,r;
        scanf ("%d%d",&l,&r);
        printf ("Case %d: %d\n",++k,solve(r)-solve(l-1));
    }
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值