zoukankan      html  css  js  c++  java
  • BZOJ 1026 [SCOI2009]windy数

    数位DP

    #include <iostream>
    #include <cstdio>
    #include <cstdlib>
    #include <cstring>
    #include <algorithm>
    #include <queue>
    #include <vector>
    #include <cmath>
    #include <map>
    #include <string>
    using namespace std;
    
    int dp[25][25];
    int p[25];
    int tot;
    int a,b;
    
    void init()
    {
        memset(dp,0,sizeof dp);
        for(int i=0;i<=9;i++) dp[1][i]=1;
        for(int i=2;i<=20;i++)
        {
            for(int j=0;j<=9;j++)
            {
                int sum=0;
                for(int k=0;k<=9;k++)
                    if(abs(k-j)>=2)
                        sum=sum+dp[i-1][k];
                dp[i][j]=sum;
            }
        }
    }
    
    int f(int x)
    {
        tot=0;
        while(x)
        {
            p[tot++]=(int)(x%10);
            x=x/10;
        }
        for(int i=0; i<tot/2; i++) swap(p[i],p[tot-i-1]);
    
        int res=0;
    
        for(int i=1;i<tot;i++)
        {
            for(int j=1;j<=9;j++)
            {
                res=res+dp[i][j];
            }
        }
    
        for(int j=1;j<p[0];j++) res=res+dp[tot][j];
    
        for(int i=1;i<tot;i++)
        {
            for(int j=0;j<p[i];j++)
            {
                if(i==0||abs(j-p[i-1])>=2) res=res+dp[tot-i][j];
            }
            if(abs(p[i]-p[i-1])<=1) break;
        }
        return res;
    }
    
    int main()
    {
        init();
    
        while(~scanf("%d%d",&a,&b)){
    
            printf("%d
    ",f(b+1)-f(a));
        }
        return 0;
    }
  • 相关阅读:
    21 情态动词
    20 动词的用法
    19 完成时/现在完成时和过去完成时的区别
    18 将来时
    17 一般过去时和过去进行时
    16 一般现在时和现在进行时
    15 There / Here be句型
    14 不定量表达法
    13 副词
    12 形容词
  • 原文地址:https://www.cnblogs.com/zufezzt/p/5166234.html
Copyright © 2011-2022 走看看