单调栈最长不下降子序列变式

Posted 减维

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单调栈最长不下降子序列变式相关的知识,希望对你有一定的参考价值。

题目大意:

给定序列列 a[],最少修改多少个位置可以令其变成最长上升子序列

分析:

这道题看似非常奇怪,然而细想一下很容易发现我们可以通过令 a’[i] = a[i] - i

对 a’[i] 求最长上升子序列,可以得到最多有多少个位置保持不不变

然后用n去减它,就是要修改的个数

代码如下:

#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;

int n,top=1,h[1000101],a[1000101];

void add(int x)
{
    int l=1,r=top,m;
    while(l<=r)
    {
        m=(l+r)>>1;
        if(x>=h[m]) l=m+1;
        else r=m-1;
    }
    h[l]=x;
}

int main()
{
    scanf("%d",&n);
    for(int i=1;i<=n;++i)
    {
        scanf("%d",&a[i]);
        a[i]-=i;
    }
    for(int i=1;i<=n;++i)
    {
        if(a[i]>=h[top]&&i!=1) h[++top]=a[i];
        else add(a[i]);
    }
    printf("%d",n-top);
}

 

以上是关于单调栈最长不下降子序列变式的主要内容,如果未能解决你的问题,请参考以下文章

模板最长不下降子序列

O(n log n)求最长上升子序列与最长不下降子序列

LeetCode 516. 最长回文子序列(区间dp) / 36. 有效的数独/73. 矩阵置零/496. 下一个更大元素 I / 456. 132 模式(特别的单调栈)

leetcode打卡——等差数列题目(LIS变式)——1218. 最长定差子序列

浅谈最长不下降子序列与最长上升子序列

最长不下降子序列