【bellovin】LIS+dp

来源:互联网 发布:c语言 strtok r 编辑:程序博客网 时间:2024/06/05 17:34

Peter has a sequence a1,a2,…,ana1,a2,…,an and he define a function on the sequence – F(a1,a2,…,an)=(f1,f2,…,fn)F(a1,a2,…,an)=(f1,f2,…,fn), where fifi is the length of the longest increasing subsequence ending with aiai.

Peter would like to find another sequence b1,b2,…,bnb1,b2,…,bn in such a manner that F(a1,a2,…,an)F(a1,a2,…,an) equals to F(b1,b2,…,bn)F(b1,b2,…,bn). Among all the possible sequences consisting of only positive integers, Peter wants the lexicographically smallest one.

The sequence a1,a2,…,ana1,a2,…,an is lexicographically smaller than sequence b1,b2,…,bnb1,b2,…,bn, if there is such number ii from 11 to nn, that ak=bkak=bk for 1≤k

#include<cstdio>#include<cstring> #define INF 0x3f3f3f3f#include<algorithm>using namespace std;int g[100010],a[100010],dp[100010];int T,n;int main(){    scanf("%d",&T);    while(T--)    {        scanf("%d",&n);        fill(g+1,g+n+1,INF);        memset(dp,0,sizeof(dp));        for(int i=1;i<=n;i++)        {            scanf("%d",&a[i]);        }        for(int i=1;i<=n;i++)        {            int pos=lower_bound(g+1,g+n+1,a[i])-g;//找出第一个大于等于a[i]的位置             g[pos]=min(g[pos],a[i]);//g[]为INF,若a[i]小就把a[i]放进去             dp[i]=max(pos,dp[i]);//dp[]是从1递增的一次加1;         }        /*        g[]赋值为INF,肯定能找到 大于等于a[i]的值,        此时g[pos]这个位置的值就换成a[i],下一次再找,        就会先与放进去的值比较,        若刚刚放进去的值大,那么现在的值又会取代它放到这个位置,        这就说明此时以这个值为结尾的序列长度为1,pos的值不会改变;        若刚刚放进去的值小,就说明能够构成长度大于1 的上升子序列 ,        pos的值会依次增大,每次都是加1         同时dp[i]里的值会取max(pos,dp[i]),再下一次,依次找,        到最后dp[n]里面存的值就是最长子序列的长度;        每一个dp[i]就是以a[i]为结尾的最长子序列的长度; */         for(int i=1;i<=n;i++)        {            printf("%d%c",dp[i],i==n?'\n':' ');        }    }    return 0;}
原创粉丝点击