1. 首页
  2. 数位DP

HDU 2089 不要62 (数位DP)

题目链接:点击打开链接~

很久以前做过,现在用数位dp写的,基础的不能再基础了~~

#include<iostream>
#include<cstdio>
#include<string>
#include<string.h>
#include<algorithm>
#include<cstdlib>
#include<ctime>
#include<cmath>
#include<iomanip>
#include<map>
#include<vector>
#include<queue>
#include<stack>
#include<bitset>
//#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
const double Pi = acos(-1.0);
const double eps = 1e-9;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9+7;
const int MAXN = 320000+10;

int dp[8][2];
int dig[8];
int n,m;

int dfs(int len,bool state,bool mxl)
{
    if(!len)
    {
        return 1;
    }
    if(!mxl && dp[len][state]!=-1)
    {
        return dp[len][state];
    }
    int res=0;
    int maxlen=mxl?dig[len]:9;
    for(int i=0; i<=maxlen; ++i)
    {
        if(i==4 || state&& i==2)
        {
            continue;
        }
        res+=dfs(len-1,i==6,mxl&& i==maxlen);
    }
    if(!mxl)
    {
        dp[len][state]=res;
    }
    return res;
}

int solve(int x)
{
    int tmp=x;
    int len=0;
    while(tmp!=0)
    {
        dig[++len]=tmp%10;
        tmp/=10;
    }
    return dfs(len,false,true);
}

int main()
{
    while(cin>>n>>m && (n!=0,m!=0))
    {
        memset(dp,-1,sizeof(dp));
        cout<<(solve(m)-solve(n-1))<<endl;
    }

    return 0;
}

 

评分 0, 满分 5 星
0
0
看完收藏一下,下次也能找得到
  • 版权声明:本文基于《知识共享署名-相同方式共享 3.0 中国大陆许可协议》发布,转载请遵循本协议
  • 文章链接:http://www.carlstedt.cn/archives/348 (转载时请注明本文出处及文章链接)
上一篇:
:下一篇

发表评论

gravatar

快来吐槽一下吧!

  1. .01 4:06
  2. .02 1:47
  3. .03 3:39
  4. .04 1:40