windy定义了一种windy数。不含前导零且相邻两个数字之差至少为2的正整数被称为windy数。 windy想知道,
在A和B之间,包括A和B,总共有多少个windy数?
标签:href ++ .com algorithm sam submit gre color style
windy定义了一种windy数。不含前导零且相邻两个数字之差至少为2的正整数被称为windy数。 windy想知道,
在A和B之间,包括A和B,总共有多少个windy数?
包含两个整数,A B。
一个整数
【数据规模和约定】
100%的数据,满足 1 <= A <= B <= 2000000000 。
#include <iostream> #include <cstdio> #include <algorithm> #include <cstring> #include <cmath> using namespace std; const int N=25,INF=1e9+5; int l,r,d[N][11]; void dp(){ for(int j=0;j<=9;j++) d[1][j]=1; for(int i=2;i<=10;i++) for(int j=0;j<=9;j++) for(int k=0;k<=9;k++) if(abs(j-k)>=2) d[i][j]+=d[i-1][k]; } int sol(int n){ int a[N],len=0,ans=0; while(n) a[++len]=n%10,n/=10; a[len+1]=0; for(int i=len-1;i>=1;i--) for(int j=1;j<=9;j++) ans+=d[i][j]; for(int j=1;j<a[len];j++) ans+=d[len][j]; //skyline for(int i=len-1;i>=1;i--){ for(int j=0;j<a[i];j++) if(abs(a[i+1]-j)>=2) ans+=d[i][j]; if(abs(a[i+1]-a[i])<2) break; } return ans; } int main(){ dp(); scanf("%d%d",&l,&r); printf("%d",sol(r+1)-sol(l)); }
BZOJ1026: [SCOI2009]windy数[数位DP]
标签:href ++ .com algorithm sam submit gre color style
原文地址:http://www.cnblogs.com/candy99/p/6061067.html