最长单调递增子序列 1.问题描述: 求一个正整数序列的最长单调自增子序列,子序列不要求是连续的。例如 Input:5 5 2 4 3 1 Output:2 2. 算法复杂度是O(N*N) f[i]是以a[i] ...