【bellovin】LIS+dp

本文介绍了一个寻找具有特定属性的最小字典序数列的方法。针对一个给定的整数序列,定义了一个函数来计算每个元素结尾的最长递增子序列长度。目标是在所有可能的正整数序列中找到一个使得该函数计算结果相同的序列,并且要求这个序列在字典序上是最小的。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值