一道简单数位 dp 题。
多设一个支点和力矩和然后套板子就做完了。
参考代码:
点击查看代码
/*
Tips:
你数组开小了吗?
你MLE了吗?
你觉得是贪心,是不是该想想dp?
一个小时没调出来,是不是该考虑换题?
*/
#include<bits/stdc++.h>
using namespace std;
#define map unordered_map
#define forl(i,a,b) for(register long long i=a;i<=b;i++)
#define forr(i,a,b) for(register long long i=a;i>=b;i--)
#define lc(x) x<<1
#define rc(x) x<<1|1
#define mid (l+r)>>1
#define cin(x) scanf("%lld",&x)
#define cout(x) printf("%lld",x)
#define lowbit(x) x&-x
#define pb push_back
#define pf push_front
#define IOS ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
#define endl '\n'
#define QwQ return 0;
#define ll long long
ll t;
ll dp[19][19][1800],a[19];
ll dfs(ll last,ll x,ll sum,bool _1)
{
if(last==0)
return !sum;
if(sum<0)
return 0;
if(_1==0 && dp[last][x][sum]>=0)
return dp[last][x][sum];
ll maxn=_1?a[last]:9,ans=0;
forl(i,0,maxn)
ans+=dfs(last-1,x,sum+(last-x)*i,_1 && i==maxn);
if(_1==0)
dp[last][x][sum]=ans;
return ans;
}
ll sol(ll x)
{
ll k=0;
while(x)
a[++k]=x%10,x/=10;
ll sum=0;
forl(i,1,k)
sum+=dfs(k,i,0,1);
return sum-k+1;
}
void solve()
{
forl(i,0,18)
forl(j,0,18)
forl(k,0,1799)
dp[i][j][k]=-1;
ll l,r;
cin>>l>>r;
cout<<sol(r)-sol(l-1)<<endl;
}
int main()
{
IOS;
t=1;
//cin>>t;
while(t--)
solve();
/******************/
/*while(L<q[i].l) */
/* del(a[L++]);*/
/*while(L>q[i].l) */
/* add(a[--L]);*/
/*while(R<q[i].r) */
/* add(a[++R]);*/
/*while(R>q[i].r) */
/* del(a[R--]);*/
/******************/
QwQ;
}