标签:
Description
Input
Output
Sample Input
1 100
0 0
Sample Output
80
跟上两道数位dp差不多。直接上代码了。
1 #include <bits/stdc++.h> 2 3 using namespace std; 4 int bit[11],dp[11][11]; 5 int dfs (int pos,int pre,bool e,bool z)//pre表示前一位数字 6 { 7 if (pos==-1) return 1; 8 if (!e&&dp[pos][pre]!=-1) return dp[pos][pre]; 9 long long ans=0; 10 int endd=e?bit[pos]:9; 11 for (int i=0;i<=endd;++i) 12 { 13 if (i==4) 14 continue; 15 if (!(i==2&&pre==6)) 16 ans+=dfs(pos-1,i,e&&i==endd,z&&(i==0)); 17 } 18 19 if (!e) dp[pos][pre]=ans; 20 return ans; 21 } 22 int calc (int n) 23 { 24 int len=0; 25 while (n) 26 { 27 bit[len++]=n%10; 28 n/=10; 29 } 30 return dfs(len-1,-1,1,1); 31 } 32 int main() 33 { 34 int m,n; 35 memset(dp,-1,sizeof dp); 36 //freopen("de.txt","r",stdin); 37 while (~scanf("%d%d",&n,&m)) 38 { 39 if (n==0&&m==0) 40 break; 41 printf("%d\n",calc(m)-calc(n-1)); 42 } 43 return 0; 44 }
标签:
原文地址:http://www.cnblogs.com/agenthtb/p/5911914.html