BZOJ.1026.[SCOI2009]windy数(数位DP)

Posted SovietPower

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BZOJ.1026.[SCOI2009]windy数(数位DP)相关的知识,希望对你有一定的参考价值。

题目链接

数位DP。sb了。。
前导0是有影响的,影响第一位的选择,所以要记。再记录上限,然后在没有限制时记忆化。

//820kb 4ms
#include <cstdio>
#include <cstring>
#include <algorithm>

int L,R,A[12],f[12][10];
bool vis[12][10];

int DFS(int pos,int las,bool lim,bool lead)
{
    if(!pos) return 1;
    if(!lim && !lead && vis[pos][las]) return f[pos][las];
    int res=0, up=lim?A[pos]:9;
    for(int i=0; i<=up; ++i)
        if(std::abs(i-las)>=2||lead) res+=DFS(pos-1,i,lim&&i==up,lead&&!i);//(lim&&)!
    if(!lim && !lead) vis[pos][las]=1, f[pos][las]=res;
    return res;
}
int Solve(int n)
{
    for(A[0]=0; n; n/=10) A[++A[0]]=n%10;
    memset(vis,0,sizeof vis);
    return DFS(A[0],100,1,1);
}

int main()
{
    scanf("%d%d",&L,&R);
    printf("%d",Solve(R)-Solve(L-1));
    return 0;
}

以上是关于BZOJ.1026.[SCOI2009]windy数(数位DP)的主要内容,如果未能解决你的问题,请参考以下文章

[bzoj1026][SCOI2009]windy数

[BZOJ1026][SCOI2009]windy数

bzoj1026 [SCOI2009]windy数

BZOJ 1026 [SCOI2009]windy数

BZOJ 1026: [SCOI2009]windy数

bzoj1026: [SCOI2009]windy数(数位dp)