MYF

UESTC 250 windy数

题目链接

UESTC 250

题目类型:数位DP

题目分析

题目大意

统计区间[l, r]内,windy的数字个数,windy数为任意相邻两位之差大于等于2的数字

解析

做数位DP之前需要先分析清楚状态,我们可以每次只找对于前一个数字为pre的第pos位的数量,但是对于这种情况需要分成两种讨论,第一,前一位是零且当前位为数字的第一位,那么pos这位可以是有效范围内的任何数字,另一种情况是前一位是除了第一种情况的所有情况,包含前一位是0但是不是最高位,比如50x,我们需要确定x这位,这种情况下当前pos位需要受之前的数字约束,所以我们对于前一位为pre且当前位为pos的用两个状态存储即可。

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include <set>
#include <map>
#include <stack>
#include <cmath>
#include <queue>
#include <cstdio>
#include <string>
#include <vector>
#include <iomanip>
#include <bitset>
#include <cstring>
#include <iostream>
#include <iosfwd>
#include <deque>
#include <algorithm>
#define Memset(a,val) memset(a,val,sizeof(a))
#define PI acos(-1.0)
#define PB push_back
#define MP make_pair
#define rt(n) (i == n ? '\n' : ' ')
#define hi printf("Hi----------\n")
#define debug(x) cout<<"Debug : ---"<<x<<"---"<<endl;
#define debug2(x,y) cout<<"Debug : ---"<<x<<" , "<<y<<"---"<<endl;
#pragma comment(linker, "/STACK:1024000000,1024000000")
using namespace std;
typedef pair<int,int> PII;
typedef long long ll;
const int maxn=30+5;
const int mod=1000000007;
const int INF=0x3f3f3f3f;
const double eps=1e-8;
ll dp[15][15][2];
int num[15];
ll dfs(int pos,int pre,bool limit,bool first){
if (pos < 1) {
return 1;
}
if (!limit&&dp[pos][pre][first]!=-1) {
return dp[pos][pre][first];
}
int mx = limit?num[pos]:9;
ll ret = 0;
for (int i=0; i<=mx; i++) {
if (first||i-pre>=2||pre-i>=2){
ret += dfs(pos-1, i, limit&&i==mx,first&&i==0);
}
}
if (!limit) {
dp[pos][pre][first] = ret;
}
return ret;
}
ll solve(ll x){
Memset(dp, -1);
int pos = 0;
while (x!=0) {
num[++pos] = x % 10;
x/=10;
}
ll ans = dfs(pos, 0, 1, 1);
return ans;
}
int main(){
ll a,b;
while (scanf("%lld%lld",&a,&b)!=EOF) {
cout<<solve(b) - solve(a-1)<<endl;
}
}