标签:
http://acm.hdu.edu.cn/showproblem.php?pid=2089
1 #include <cstdio> 2 #include <cstring> 3 #include <algorithm> 4 #include <iostream> 5 using namespace std; 6 7 int dp[10][2]; 8 int bit[10]; 9 /* 10 数位DP入门 11 dp[pos][1]表示pos+1位为6的情况 12 dp[pos][0]表示正常 13 */ 14 int dfs(int pos,bool st,bool flag) 15 { 16 if(!pos) return 1; 17 //flag 是表示 当前位是不是达到了bit[pos]的上限位 18 if(flag&&dp[pos][st]!=-1) return dp[pos][st]; 19 int u=flag?9:bit[pos]; 20 int ans=0; 21 for(int d=0;d<=u;d++){ 22 if(d==4||st&&d==2) continue; 23 ans+=dfs(pos-1,d==6,flag||d<u); 24 } 25 if(flag) dp[pos][st]=ans; 26 return ans; 27 } 28 29 int solve(int n) 30 { 31 int len=0; 32 while(n){ 33 bit[++len]=n%10; 34 n/=10; 35 } 36 return dfs(len,0,0); 37 } 38 39 int main() 40 { 41 int l,r; 42 memset(dp,-1,sizeof(dp)); 43 while(cin>>l>>r){ 44 if(l+r==0) break; 45 cout<<solve(r)-solve(l-1)<<endl; 46 } 47 return 0; 48 }
标签:
原文地址:http://www.cnblogs.com/fightfordream/p/5632405.html