最长不下降子序列--LIS
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了最长不下降子序列--LIS相关的知识,希望对你有一定的参考价值。
#include <iostream> #include <vector> #include <algorithm> using namespace std; const int maxn = 100; int main() { int n; cin >> n; vector<int> datas; while (n--) { int tem; cin >> tem; datas.push_back(tem); } int dp[maxn]; //fill(dp, dp + n+1, 1); int m = 0; for (int i = 0; i < datas.size(); ++i) { dp[i] = 1; for (int j = 0; j < i; ++j) { if (datas[i] > datas[j] && (dp[j] + 1 > dp[i])) dp[i] = dp[j] + 1; if (m < dp[i])m = dp[i]; } } cout << m << endl; system("pause"); return 0; }
以上是关于最长不下降子序列--LIS的主要内容,如果未能解决你的问题,请参考以下文章
1045 Favorite Color Stripe (最长不下降子序列 LIS)