zoukankan      html  css  js  c++  java
  • hdu 4352 XHXJ's LIS 数位dp+状态压缩

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4352

    XHXJ's LIS

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)


    Problem Description
    #define xhxj (Xin Hang senior sister(学姐)) 
    If you do not know xhxj, then carefully reading the entire description is very important.
    As the strongest fighting force in UESTC, xhxj grew up in Jintang, a border town of Chengdu.
    Like many god cattles, xhxj has a legendary life: 
    2010.04, had not yet begun to learn the algorithm, xhxj won the second prize in the university contest. And in this fall, xhxj got one gold medal and one silver medal of regional contest. In the next year's summer, xhxj was invited to Beijing to attend the astar onsite. A few months later, xhxj got two gold medals and was also qualified for world's final. However, xhxj was defeated by zhymaoiing in the competition that determined who would go to the world's final(there is only one team for every university to send to the world's final) .Now, xhxj is much more stronger than ever,and she will go to the dreaming country to compete in TCO final.
    As you see, xhxj always keeps a short hair(reasons unknown), so she looks like a boy( I will not tell you she is actually a lovely girl), wearing yellow T-shirt. When she is not talking, her round face feels very lovely, attracting others to touch her face gently。Unlike God Luo's, another UESTC god cattle who has cool and noble charm, xhxj is quite approachable, lively, clever. On the other hand,xhxj is very sensitive to the beautiful properties, "this problem has a very good properties",she always said that after ACing a very hard problem. She often helps in finding solutions, even though she is not good at the problems of that type.
    Xhxj loves many games such as,Dota, ocg, mahjong, Starcraft 2, Diablo 3.etc,if you can beat her in any game above, you will get her admire and become a god cattle. She is very concerned with her younger schoolfellows, if she saw someone on a DOTA platform, she would say: "Why do not you go to improve your programming skill". When she receives sincere compliments from others, she would say modestly: "Please don’t flatter at me.(Please don't black)."As she will graduate after no more than one year, xhxj also wants to fall in love. However, the man in her dreams has not yet appeared, so she now prefers girls.
    Another hobby of xhxj is yy(speculation) some magical problems to discover the special properties. For example, when she see a number, she would think whether the digits of a number are strictly increasing. If you consider the number as a string and can get a longest strictly increasing subsequence the length of which is equal to k, the power of this number is k.. It is very simple to determine a single number’s power, but is it also easy to solve this problem with the numbers within an interval? xhxj has a little tired,she want a god cattle to help her solve this problem,the problem is: Determine how many numbers have the power value k in [L,R] in O(1)time.
    For the first one to solve this problem,xhxj will upgrade 20 favorability rate。
     
    Input
    First a integer T(T<=10000),then T lines follow, every line has three positive integer L,R,K.(
    0<L<=R<263-1 and 1<=K<=10).
     
    Output
    For each query, print "Case #t: ans" in a line, in which t is the number of the test case starting from 1 and ans is the answer.
     
    Sample Input
    1 123 321 2
     
    Sample Output
    Case #1: 139
     
    Author
    peterae86@UESTC03
     
    Source
     题意:找出[L,R]区间内的最长上升子序列为k的个数;
     思路:好题,数位dp几乎都是板子,那个状态压缩很厉害;
        根据nlogn的LIS的求解方法:
       对于计算中获得的递增序列A1A2A3...Am ,
       每个At其实表示:之前出现的所有序列中,
         长度t的上升子序列末位最小为At。
       对于出现的下一个新元素An,需要更新子序列,
         如果Amin+1>An>Amin,说明长度为min+1的子序列最后一个元素可以更新为An;
         如果An>Am,说明可获得的最长子序列可更新为A1A2A3..Am An 。
        根据上面的可以将最长上升子序列的方案状态压缩0,1进行统计;
    #pragma comment(linker, "/STACK:1024000000,1024000000")
    #include<iostream>
    #include<cstdio>
    #include<cmath>
    #include<string>
    #include<queue>
    #include<algorithm>
    #include<stack>
    #include<cstring>
    #include<vector>
    #include<list>
    #include<set>
    #include<map>
    using namespace std;
    #define ll long long
    #define pi (4*atan(1.0))
    #define eps 1e-4
    #define bug(x)  cout<<"bug"<<x<<endl;
    const int N=3e3+10,M=1e6+10,inf=2147483647;
    const ll INF=1e18+10,mod=2147493647;
    ll f[30][N][12],bit[60];
    int k;
    int l(int x)
    {
        int ans=0;
        while(x)ans+=(x%2),x/=2;
        return ans;
    }
    int change(int sum,int x)
    {
        for(int i=x;i<=9;i++)
            if(sum&(1<<i))return (sum-(1<<i)+(1<<x));
        return sum|(1<<x);
    }
    ll dp(int pos,int sum,int k,int flag,int q)
    {
        if(pos==0)return (l(sum)==k);
        if(flag&&f[pos][sum][k]!=-1)return f[pos][sum][k];
        int x=flag?9:bit[pos];
        ll ans=0;
        for(int i=0;i<=x;i++)
        {
            if(!q&&!i)
                ans+=dp(pos-1,sum,k,flag||i<x,q);
            else
            {
                int z=change(sum,i);
                ans+=dp(pos-1,z,k,flag||i<x,q||i!=0);
            }
        }
        if(flag)f[pos][sum][k]=ans;
        return ans;
    }
    ll getans(ll x)
    {
        int len=0;
        while(x)
        {
            bit[++len]=x%10;
            x/=10;
        }
        return dp(len,0,k,0,0);
    }
    int main()
    {
        ll l,r;
        memset(f,-1,sizeof(f));
        int T,cas=1;
        scanf("%d",&T);
        while(T--)
        {
            scanf("%lld%lld%d",&l,&r,&k);
            printf("Case #%d: %lld
    ",cas++,getans(r)-getans(l-1));
        }
        return 0;
    }
  • 相关阅读:
    Kafka项目实战-用户日志上报实时统计之编码实践
    MapReduce-深度剖析
    Word 页码设置教程:如何删除封面和目录的目录?
    Pytorch autograd,backward详解
    Pytorch Sampler详解
    Pytorch并行计算:nn.parallel.replicate, scatter, gather, parallel_apply
    论文笔记系列-Auto-DeepLab:Hierarchical Neural Architecture Search for Semantic Image Segmentation
    Pytorch: parameters(),children(),modules(),named_*区别
    Broadcast,Scatter,Gather,Reduce,All-reduce分别是什么?
    如何理解正定矩阵和半正定矩阵
  • 原文地址:https://www.cnblogs.com/jhz033/p/6596708.html
Copyright © 2011-2022 走看看