2023-9-14 最长上升子序列

题目链接:最长上升子序列

在这里插入图片描述文章来源地址https://uudwc.com/A/20vvo

#include <iostream>
#include <algorithm>

using namespace std;

const int N = 1010;

int n;
int a[N];
int f[N];

int main()
{
    cin >> n;
    for(int i = 1; i <= n; i ++) cin >> a[i];
    
    for(int i = 1; i <= n; i ++)
    {
        f[i] = 1;
        for(int j = 1; j <= i; j ++)
            if(a[j] < a[i])
                f[i] = max(f[i], f[j] + 1);
    }
    
    int res = 1;
    for(int i = 2; i <= n; i++) res = max(res, f[i]);
    
    cout << res << endl;

    return 0;
}

原文地址:https://blog.csdn.net/weixin_63522344/article/details/132891250

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请联系站长进行投诉反馈,一经查实,立即删除!

h
上一篇 2023年09月14日 23:32
Docker概念通讲
下一篇 2023年09月14日 23:33