SGU_390_Tickets(另类数位DP)

来源:互联网 发布:php编程代码大全 编辑:程序博客网 时间:2024/05/16 07:12

Tickets

Time Limit : 1000/500ms (Java/Other)   Memory Limit : 524288/262144K (Java/Other)
Total Submission(s) : 79   Accepted Submission(s) : 16
Problem Description


Conductor is quite a boring profession, as all you have to do is just to sell tickets to the passengers. So no wonder that once upon a time in a faraway galaxy one conductor decided to diversify this occupation. Now this conductor sells several tickets at a time to each passenger. More precisely, he successively gives tickets to the passenger until the sum of the digits on all the tickets given becomes not less than some integer number k. Then this process repeats for the next passenger. Initially conductor has a tape of tickets numbered successively from l to r, inclusive. This way of tickets distribution is quite good, because passengers are glad to get several tickets when they pay only for one. But there is one disadvantage. Since each passenger gets several tickets, it is possible that conductor won't be able to serve all passengers. Your task is to help conductor in this difficult situation. You should calculate how many passengers is the conductor able to serve.

Input
Input file contains three integer numbers lr and k (1 ≤ l ≤ r ≤ 1018, 1 ≤ k ≤ 1000).

Output
Output should contain exactly one number — the answer to the problem.

Example(s)
sample input

sample output

40 218 57

29



题意:
给你一个区间,让你分段,分段完后一段连续的数的数位和要大于K,问这样的段有多少
题解:
朴素的数位DP肯定不能过,这题在这篇国家集训队论文上出现过,作者讲的比较清楚(算法合集之《浅谈数位类统计问题》),
我们设dp[i][sum][rem]表示考虑到第i为,i之前的数位和为sum,当前还有多少rem没有用来分段,这里我用一个pair型来记录满足条件的段数cnt,和在这个dp状态下的rem,然后采用记忆化搜索,就能大大降低时间复杂度,为什么?因为当考虑到第i位时,前面的和为sum,只要不是边界情况下后面的每一个数位都可以取0-9,所以如果之前算出了当前的这个状态,那么就可以直接返回这个状态的值,这就是记忆化搜索的优势。
我看完论文后,对rem的概念还是比较模糊,然后自己模拟了一遍,最后懂了这个的意思,就拿样列来说,40—218内找满足条件的分段数,我们最开始sum和rem都为0,从40开始搜,40的数位和sum为4,然后dfs到最后一位,发现sum+rem小于57,所以到40这个数的时候不能分为一段,然后返回cnt=0,rem=sum+rem=4,就代表40这个数还没用于分段,然后回溯回去搜41,此时的sum为5,rem为4,然后发现sum+rem还是小于57,就返回cnt=0,rem=sum+rem=9,代码40和41这两个数都没用于分段,最后一直搜到47的时候sum=11,rem=49,然后发现sum+rem>=57成立,返回cnt=1,rem=0,表示到这个数可以分为一段,然后rem为0表示分完一段后,没用的数,没有了,所以对应的数位和rem为0。
#include<cstdio>#include<cstring>#include<algorithm>#define F(i,a,b) for(int i=a;i<=b;i++)using namespace std;typedef long long LL;typedef pair<LL,LL>P;int l[30],r[30],ln,rn,vis[30][200][1005];LL a,b,m;P dp[30][200][1005];P dfs(int pos=rn,int sum=0,int rem=0,bool up=1,bool dn=1){if(!pos)if(sum+rem>=m)return P(1,0);else return P(0,sum+rem);if(vis[pos][sum][rem]&&!up&&!dn)return dp[pos][sum][rem];int st=dn?l[pos]:0,end=up?r[pos]:9;P ans=P(0,rem);F(i,st,end){P tp=dfs(pos-1,sum+i,ans.second,up&&i==end,dn&&i==st);ans.first+=tp.first,ans.second=tp.second;}if(!up&&!dn)dp[pos][sum][rem]=ans,vis[pos][sum][rem]=1;return ans;}int main(){while(~scanf("%I64d%I64d%I64d",&a,&b,&m)){memset(vis,0,sizeof(vis));for(rn=0;b;b/=10)r[++rn]=b%10;for(ln=0;ln<rn;a/=10)l[++ln]=a%10;printf("%I64d\n",dfs().first);}return 0;}




 
0 0