算法.线性dp2

算法.线性dp2_第1张图片

#include
using namespace std;
const int N = 1010;
int n, m;
int f[N],a[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 = 0;
    for (int i = 1; i <= n; i++)
    {
        res = max(res, f[i]);
    }
    cout << res;

    return 0;
}

你可能感兴趣的:(算法,算法,c++,数据结构)