300. Longest Increasing Subsequence(LIS最长递增子序列 动态规划)

Given an unsorted array of integers, find the length of longest increasing subsequence.

For example,
Given [10, 9, 2, 5, 3, 7, 101, 18],
The longest increasing subsequence is [2, 3, 7, 101], therefore the length is 4. Note that there may be more than one LIS combination, it is only necessary for you to return the length.

Your algorithm should run in O(n2) complexity.

Follow up: Could you improve it to O(n log n) time complexity?

 

长度为N的数组记为A={aaa2...an-1}
A的前i个字符构成的前缀串为Ai= a1a2...ai-1,以ai结尾的最长递增
子序列记做Li,其长度记为a[i]
假定已经计算得到了a[0,1…,i-1],如何计算a[i]呢?
根据定义, Li必须以ai结尾,如果将ai缀到L0 L1…… Li-1的后面,是否
允许呢?
如果ajai,则可以将ai缀到Lj的后面,并且使得Lj的长度变长。
 从而:a[i]={max(a(j))+1,  0 j≤i-1a[j]a[i] } 
 需要遍历在i之前的所有位置j,找出满足条件a[j]a[i]a[j]
 计算得到a[0…n-1]后,遍历所有的a[i],找出最大值即为最大递增子序列
的长度。
 时间复杂度为O(N2)
 思考:如何求最大递增子序列本身?
 记录前驱 


 1 class Solution {
 2     public int lengthOfLIS(int[] a) {
 3         if(a.length==0) return 0;
 4         int[] longs = new int[a.length];
 5         for(int i = 0;i<a.length;i++)
 6             longs[i] = 1;
 7         int max = longs[0];
 8         for(int i = 1;i < a.length;i++){
 9             for(int j = 0;j <= i-1;j++)
10                 if(a[j]<a[i])
11                     if(longs[i]<longs[j]+1)
12                         longs[i] = longs[j]+1;
13                         //如果求序列本身,在这里记录前驱
14                 
15             if(max<longs[i])
16                 max = longs[i];       
17         }
18         return max;
19     }

 

 

 1 class Solution(object):
 2     def lengthOfLIS(self, a):
 3         n = len(a)
 4         if n ==0:
 5             return 0
 6         dp = [1] * n
 7         for i in range(n):
 8             for j in range(i):
 9                 if(a[i]>a[j] and dp[i]<dp[j]+1):
10                     dp[i] = dp[j]+1
11         
12         #dp[i]现在存储的即为以a[i]结尾最长递增子序列长度
13         #求dp数组中最大者即为最长的长度
14         
15         return max(dp)

 

转载于:https://www.cnblogs.com/zle1992/p/8532558.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值