题目:

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?

链接: http://leetcode.com/problems/longest-increasing-subsequence/

题解:

求数组的最长递增子序列。经典dp问题,在很多大学讲DP的教程里,都会出现这道题以及Longest Common Subsequence。 这里其实也有O(nlogn)的方法,比如Patience Sorting一类的,二刷再研究。下面我们来看DP。这个问题一开始可以被分解为recursive的子问题,一步一步优化就可以得到带有memorization的iterative解法。初始化dp[i] = 1,即一个元素的递增序列。 假设以i - 1结尾的subarray里的LIS为dp[i - 1],那么我们要求以i结尾的subarray里的LIS,dp[i]的时候,要把这个新的元素和之前所有的元素进行比较,同时逐步比较dp[j] + 1与dp[i],假如发现更长的序列,我们则更新dp[i] = dp[j] + 1,继续增加j进行比较。当i之前的元素全部便利完毕以后,我们得到了当前以i结尾的subarray里的LIS,就是dp[i]。

Time Complexity - O(n2), Space Complexity - O(n2)。

public class Solution {
public int lengthOfLIS(int[] nums) {
if(nums == null || nums.length == 0) {
return 0;
}
int len = nums.length, max = 0;
int[] dp = new int[len]; for(int i = 0; i < len; i++) {
dp[i] = 1;
for(int j = 0; j < i; j++) {
if(nums[i] > nums[j] && dp[j] + 1 > dp[i]) {
dp[i] = dp[j] + 1;
}
}
max = Math.max(max, dp[i]);
} return max;
}
}

题外话:

#300题!又是一个里程碑了。虽然之前做的很多题目都忘记了,但相信二刷会好好巩固和再学习。微信群里一起刷题的小伙伴们,好多已经拿到了Amazon的Offer,我也要好好努力才行啊。这周休假在家,周三继续修理房子,希望一切顺利。 同时希望在这周能够把LeetCode第一遍完成,然后早日学习新的知识,比如多线程,设计模式,以及一些系统设计等等。

Reference:

https://leetcode.com/discuss/67609/short-java-solution-using-dp-o-n-log-n

https://leetcode.com/discuss/67554/9-lines-c-code-with-o-nlogn-complexity

https://leetcode.com/discuss/67533/c-typical-dp-2-solution-and-nlogn-solution-from-geekforgeek

https://leetcode.com/discuss/67565/simple-java-o-nlogn-solution

https://leetcode.com/discuss/71129/space-log-time-short-solution-without-additional-memory-java

https://leetcode.com/discuss/67687/c-o-nlogn-solution-with-explainations-4ms

https://leetcode.com/discuss/69309/c-o-nlogn-with-explanation-and-references

https://leetcode.com/discuss/67572/o-nlogn-and-o-n-2-java-solutions

https://leetcode.com/discuss/67689/4ms-o-nlogn-non-recursive-easy-to-understand-java-solution

https://leetcode.com/discuss/67553/share-java-dp-solution

https://leetcode.com/discuss/72127/easy-to-understand-solution-using-dp-with-video-explanation

https://leetcode.com/discuss/67806/another-o-n-log-n-python

http://www.geeksforgeeks.org/longest-monotonically-increasing-subsequence-size-n-log-n/

http://www.cs.cornell.edu/~wdtseng/icpc/notes/dp2.pdf

https://courses.engr.illinois.edu/cs473/sp2011/lectures/08_notes.pdf

http://www.cs.toronto.edu/~vassos/teaching/c73/handouts/lis.pdf

http://www.cs.mun.ca/~kol/courses/2711-w08/dynprog-2711.pdf

https://courses.cs.washington.edu/courses/cse417/02wi/slides/06dp-lis.pdf

https://www.cs.princeton.edu/courses/archive/spring13/cos423/lectures/LongestIncreasingSubsequence.pdf

https://en.wikipedia.org/wiki/Patience_sorting

https://en.wikipedia.org/wiki/Longest_increasing_subsequence

300. Longest Increasing Subsequence的更多相关文章

  1. [LeetCode] 300. Longest Increasing Subsequence 最长递增子序列

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

  2. Leetcode 300 Longest Increasing Subsequence

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

  3. leetcode@ [300] Longest Increasing Subsequence (记忆化搜索)

    https://leetcode.com/problems/longest-increasing-subsequence/ Given an unsorted array of integers, f ...

  4. [leetcode]300. Longest Increasing Subsequence最长递增子序列

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

  5. 【leetcode】300.Longest Increasing Subsequence

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

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

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

  7. [leetcode] 300. Longest Increasing Subsequence (Medium)

    题意: 求最长增长的子序列的长度. 思路: 利用DP存取以i作为最大点的子序列长度. Runtime: 20 ms, faster than 35.21% of C++ online submissi ...

  8. LeetCode 300. Longest Increasing Subsequence最长上升子序列 (C++/Java)

    题目: Given an unsorted array of integers, find the length of longest increasing subsequence. Example: ...

  9. [LC] 300. Longest Increasing Subsequence

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

随机推荐

  1. Cocos2dx中利用双向链表实现无限循环滚动层

    [Qboy原创] 在Cocos2dX 3.0 中已经实现一些牛逼的滚动层,但是对于有一些需要实现循环滚动的要求确没有实现,笔者在前段时间的一个做了一个游戏,需求是实现在少有的(13个)英雄中进行循环滚 ...

  2. IT人为什么难以拿到高薪?

    最近在论坛里看到很多人发牢骚,说薪水少,可在我看来,你们这样的人拿得到高薪才怪! 我先问一句:这里有多少人是本科的?有多少人是正规本科的(不算自考,成考和专升本)?有多少人是有学位的?有多少有学位的是 ...

  3. Node.js 学习(五)Node.js 事件循环

    Node.js 是单进程单线程应用程序,但是通过事件和回调支持并发,所以性能非常高. Node.js 的每一个 API 都是异步的,并作为一个独立线程运行,使用异步函数调用,并处理并发. Node.j ...

  4. python--str的几个方法

    str.format()  :对应取值 name="chenshan" age=30 address="宜山路926号新思大厦15楼" print " ...

  5. 【CentOS】IBM X3650M4 IMM远程管理【转载】

    问题描述:          IBM X3650M4 IMM远程开机和关机   参考资料:             http://www.ibmsys.cn/blog/?p=201   问题解决: 一 ...

  6. 设计模式之桥接模式(Bridge)

    桥接模式与原理:将抽象部分与实现部分分离,使它们都可以独立的变化.最终的结果表现在实现类中.两者之间属于等价关系,即实现部分和抽象部分可以相互交换. 代码如下 #include <iostrea ...

  7. VIM 技巧 (一)全文统一添加

    大家应该有遇到过给整篇内容增加同样的东西的经历.例如给每行结尾增加分号.冒号等内容. 今天和大家分享下 关于此场景如何快速.高效的实现. 例如 Line one Line two Line three ...

  8. [转载]115个Java面试题和答案

    不知道大家有没有这样的体会,就是找工作的时候不得不准备大量面试题,而工作的时间长了面试题里的精髓却忘的差不多了... 转载几篇Java面试的bolg,温故而知新,最重要的是常来看看. 1. http: ...

  9. Dynamic Programming - Part2

    实现如下: public static void main(String[] args) { String squence1 = "ABCBDAB"; String squence ...

  10. 说说Thread.Sleep(0)的那些奇怪的事

    写在前面 最近在弄一个传输组件,用到很多多线程的知识,其中有个问题,困扰我很久,不知道是什么原因,脑子一热,在传输过程中,添加了一句代码Thread.Sleep(0).那个问题竟然解决了,耗费我一上午 ...