|
13 | 13 |
|
14 | 14 | Your algorithm should run in O(n2) complexity.
|
15 | 15 |
|
16 |
| - Follow up: Could you improve it to O(n log n) time complexity? |
| 16 | + Follow up: Could you improve it to O(nlogn) time complexity? |
17 | 17 | */
|
18 | 18 | public class _300 {
|
19 | 19 |
|
20 |
| - /** |
21 |
| - * credit: https://discuss.leetcode.com/topic/28719/short-java-solution-using-dp-o-n-log-n |
22 |
| - * |
23 |
| - * The idea is that as you iterate the sequence, |
24 |
| - * you keep track of the minimum value a subsequence of given length might end with, |
25 |
| - * for all so far possible subsequence lengths. |
26 |
| - * |
27 |
| - * So dp[i] is the minimum value a subsequence of length i+1 might end with. |
28 |
| - * Having this info, for each new number we iterate to, |
29 |
| - * we can determine the longest subsequence where it can be appended using binary search. |
30 |
| - * The final answer is the length of the longest subsequence we found so far.*/ |
31 |
| - public int lengthOfLIS(int[] nums) { |
32 |
| - int[] dp = new int[nums.length]; |
33 |
| - int len = 0; |
34 |
| - for (int x : nums) { |
35 |
| - /**Java Doc of this binarySearch API: |
36 |
| - * @return index of the search key, if it is contained in the array |
37 |
| - * within the specified range; |
38 |
| - * otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The |
39 |
| - * <i>insertion point</i> is defined as the point at which the |
40 |
| - * key would be inserted into the array: the index of the first |
41 |
| - * element in the range greater than the key, |
42 |
| - * or <tt>toIndex</tt> if all |
43 |
| - * elements in the range are less than the specified key. Note |
44 |
| - * that this guarantees that the return value will be >= 0 if |
45 |
| - * and only if the key is found.*/ |
46 |
| - int index = Arrays.binarySearch(dp, 0, len, x); |
47 |
| - if (index < 0) { |
48 |
| - index = -(index + 1); |
49 |
| - } |
50 |
| - dp[index] = x; |
51 |
| - if (index == len) { |
52 |
| - len++; |
| 20 | + public static class Solution1 { |
| 21 | + |
| 22 | + /** |
| 23 | + * credit: https://discuss.leetcode.com/topic/28719/short-java-solution-using-dp-o-n-log-n |
| 24 | + * The idea is that as you iterate the sequence, |
| 25 | + * you keep track of the minimum value a subsequence of given length might end with, |
| 26 | + * for all so far possible subsequence lengths. |
| 27 | + * So dp[i] is the minimum value a subsequence of length i+1 might end with. |
| 28 | + * Having this info, for each new number we iterate to, |
| 29 | + * we can determine the longest subsequence where it can be appended using binary search. |
| 30 | + * The final answer is the length of the longest subsequence we found so far. |
| 31 | + */ |
| 32 | + public int lengthOfLIS(int[] nums) { |
| 33 | + int[] dp = new int[nums.length]; |
| 34 | + int len = 0; |
| 35 | + for (int x : nums) { |
| 36 | + /**Java Doc of this binarySearch API: |
| 37 | + * @return index of the search key, if it is contained in the array |
| 38 | + * within the specified range; |
| 39 | + * otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The |
| 40 | + * <i>insertion point</i> is defined as the point at which the |
| 41 | + * key would be inserted into the array: the index of the first |
| 42 | + * element in the range greater than the key, |
| 43 | + * or <tt>toIndex</tt> if all |
| 44 | + * elements in the range are less than the specified key. Note |
| 45 | + * that this guarantees that the return value will be >= 0 if |
| 46 | + * and only if the key is found.*/ |
| 47 | + int index = Arrays.binarySearch(dp, 0, len, x); |
| 48 | + if (index < 0) { |
| 49 | + index = -(index + 1); |
| 50 | + } |
| 51 | + dp[index] = x; |
| 52 | + if (index == len) { |
| 53 | + len++; |
| 54 | + } |
53 | 55 | }
|
| 56 | + return len; |
54 | 57 | }
|
55 |
| - return len; |
56 | 58 | }
|
57 |
| - |
58 |
| - public static void main(String... args) { |
59 |
| - _300 test = new _300(); |
60 |
| - int[] nums = new int[]{10, 9, 2, 5, 3, 7, 101, 18}; |
61 |
| - System.out.println(test.lengthOfLIS(nums)); |
62 |
| - } |
63 |
| - |
64 | 59 | }
|
0 commit comments