【本文链接】
http://www.cnblogs.com/hellogiser/p/dp-of-LIS.html
【分析】
思路一:设序列为A,对序列进行排序后得到B,那么A的最长递增子序列LIS就是序列A和B的最长公共子序列LCS,即LIS(A) = LCS(A,B)。时间复杂度为n^2。
思路二:动态规划。时间复杂度为n^2,可以进一步优化为n^lgn。
【代码】
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
// 08_LIS.cpp : Defines the entry point for the console application.
// /* version: 1.0 author: hellogiser blog: http://www.cnblogs.com/hellogiser date: 2014/8/4 */ /* Algorithm: We compute F*(j) for j=1,2,…,N Step 1: Def of subproblem #include "stdafx.h" void Print(int *array, int n) int Max(int *array, int n) int LIS(int *array, int n) int result = Max(f, n); void test_case(int *a, int n) void test_default() void test_main() int _tmain(int argc, _TCHAR *argv[]) |