FZU 2113 Jason的特殊爱好 (数位dp)

题目链接

题意:统计区间[a,b]里数字1出现的次数。

思路:数位dp。

收获是,dfs传递的参数可能是为了判断符合条件的答案(比如不要62中的preis6等)

但是也可能是在统计答案信息。。。pos等于0的时候返回值未必是1和0.。。

然后傻逼fzu。。。long long 必须交 I64d..因为这个wa到死。

傻逼fzu,毁我青春。

/* ***********************************************
Author :111qqz
Created Time :Thu 29 Sep 2016 02:20:09 AM CST
File Name :code/fzu/2113.cpp
************************************************ */
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <cmath>
#include <cstdlib>
#include <ctime>
#define fst first
#define sec second
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define ms(a,x) memset(a,x,sizeof(a))
typedef long long LL;
#define pi pair < int ,int >
#define MP make_pair
using namespace std;
const double eps = 1E-8;
const int dx4[4]={1,0,0,-1};
const int dy4[4]={0,-1,1,0};
const int inf = 0x3f3f3f3f;
LL l,r;
int digit[30];
LL dp[30][30];
LL  dfs( int pos,int cnt,bool limit)
{
    if (pos==0) return cnt;
    if (!limit&&dp[pos][cnt]!=-1) return dp[pos][cnt];
    int mx = limit?digit[pos]:9;
    LL res = 0 ;
    for ( int i = 0 ; i <= mx ; i++)
    {
	if (i==1)
	res = res + dfs(pos-1,cnt+1,limit&&i==mx);
	else res = res + dfs(pos-1,cnt,limit&&i==mx);
    }
    if (!limit) dp[pos][cnt] = res;
    return res;
}
LL solve( LL n)
{
    int len = 0 ;
    ms(digit,0);
    while (n)
    {
	digit[++len] = n;
	n/=10;
    }
    ms(dp,-1);
    return dfs(len,0,true);
}
int main()
{
	#ifndef  ONLINE_JUDGE 
	freopen("code/in.txt","r",stdin);
  #endif
	ms(dp,-1);
	while (~scanf("%I64d%I64d",&l,&r))
	{
	    LL ans = solve(r) - solve(l-1);
	    printf("%I64d\n",ans);
	}
  #ifndef ONLINE_JUDGE  
  fclose(stdin);
  #endif
    return 0;
}