码迷,mamicode.com
首页 > 其他好文 > 详细

Hdu3079Balanced Number数位dp

时间:2014-08-09 23:08:59      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   div   amp   

枚举支点,然后就搞,记录之前的点的力矩和。

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <climits>
#include <string>
#include <iostream>
#include <map>
#include <cstdlib>
#include <list>
#include <set>
#include <queue>
#include <stack>
#include<math.h>
using namespace std;
typedef long long LL;

LL up[100];LL dp[30][30][2000];
LL dfs(LL x,LL pos,LL pre,LL flag)
{
    if(x<=0) return pre==0;
    if(pre<0) return 0;
    if(!flag&&~dp[x][pos][pre]) return dp[x][pos][pre];
    LL limit= flag? up[x]: 9,ret= 0;
    for(LL i = 0;i<= limit;i++){
        ret+=dfs(x-1,pos,pre+(x - pos )* i ,flag&&i==limit) ;
    }
    return flag? ret : dp[x][pos][pre]= ret;
}
LL solve(LL x)
{
    LL len=0;
    while(x){
        up[++len]=x%10;
        x/=10;
    }
    LL ans=0;
    for(LL i = 1;i<= len;i++)
        ans+=dfs(len,i,0,1);
    return ans-len ;

}
int main()
{
    LL Icase;LL n,m;
    scanf("%d",&Icase);
    memset(dp,-1,sizeof(dp));
    while(Icase--){
        cin>>n>>m;
        cout<<solve(m) - solve(n-1) <<endl;
    }
    return 0;
}

 

Hdu3079Balanced Number数位dp,布布扣,bubuko.com

Hdu3079Balanced Number数位dp

标签:style   blog   color   os   io   for   div   amp   

原文地址:http://www.cnblogs.com/yigexigua/p/3901678.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!