UESTC-1307-windy数

2020-11-27 23:26

阅读:761

标签:style   blog   class   code   c   color   

windy定义了一种windy数。
不含前导零且相邻两个数字之差至少为2的正整数被称为windy数。
windy想知道,在A和B之间,包括A和B,总共有多少个windy数?

Input

包含两个整数,A B。
满足 1

Output

包含一个整数:闭区间[A,B]上windy数的个数。

Sample Input

1 10

Sample Output

9


状态分析比较简单,需要加入前导0的状态 如01 02 03



#include 
#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;

typedef long long ll;
ll dp[20][10];
vector digit;

int a,b;
ll dfs(int pos,int statu,int done,int first){
    if(pos==-1) return 1;
    if(!done && ~dp[pos][statu]&&!first) return dp[pos][statu];
    ll res = 0;
    int end = done? digit[pos]:9;
    if(first){
        for(int i = 0; i =2)
                res += dfs(pos-1,i,done&&i==end,0);
        }
    }
    if(!done&&!first)   dp[pos][statu] = res;
    return res;
}

ll solve(int num){
    memset(dp,-1,sizeof dp);
    digit.clear();
    while(num){
        digit.push_back(num%10);
        num /= 10;
    }
    return dfs(digit.size()-1,0,1,1);
}

int main(){
    while(cin >> a >> b){
        cout

UESTC-1307-windy数,搜素材,soscw.com

UESTC-1307-windy数

标签:style   blog   class   code   c   color   

原文地址:http://blog.csdn.net/mowayao/article/details/25968829


评论


亲,登录后才可以留言!