最长递增子序列 dp

Posted liuzhaojun

tags:

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

技术图片

 

 

/*
    Name:
    Copyright:
    Author:  流照君
    Date: data
    Description:
*/
#include <iostream>
#include<string>
#include <algorithm>
#include <vector>
#define inf 0x3f3f
using namespace std;
typedef long long ll;
int main()
{
	//freopen("in.txt", "r", stdin);
	int n,a[inf],dp[inf];
	fill(dp,dp+inf,0);
	cin>>n;
	for(int i=0;i<n;i++)
	cin>>a[i];
	dp[0]=1;
	for(int i=0;i<n;i++)
	{
		for(int j=0;j<i;j++)
		{
			if(a[i]>=a[j])
			{
				dp[i]=max(dp[i],dp[j]+1); 
			}
		}
	}
	ll maxx=1;
	for(int i=0;i<n;i++)
	{
		if(dp[i]>maxx)
		maxx=dp[i];
	}
	cout<<maxx<<endl;
    //freopen("out.txt", "w", stdout);
    return 0;
}

  思想技术图片

 

 

好久没写题目了,惭愧

以上是关于最长递增子序列 dp的主要内容,如果未能解决你的问题,请参考以下文章

最长递增子序列

Leetocde300. 最长递增子序列(经典DP)

leetcode 最长递增子序列 中等

LeetCode刷题 最长递增子序列

最长递增子序列 python

dp的二分优化NO300 最长递增子序列