ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

longest increasing subsequence

2022-08-18 13:02:02  阅读:118  来源: 互联网

标签:right nums int list subsequence longest increasing left


300. Longest Increasing Subsequence Medium

Given an integer array nums, return the length of the longest strictly increasing subsequence.

A subsequence is a sequence that can be derived from an array by deleting some or no elements without changing the order of the remaining elements. For example, [3,6,2,7] is a subsequence of the array [0,3,1,6,2,2,7].

Example 1:

Input: nums = [10,9,2,5,3,7,101,18]
Output: 4
Explanation: The longest increasing subsequence is [2,3,7,101], therefore the length is 4.

Example 2:

Input: nums = [0,1,0,3,2,3]
Output: 4

Example 3:

Input: nums = [7,7,7,7,7,7,7]
Output: 1 

Constraints:

  • 1 <= nums.length <= 2500
  • -104 <= nums[i] <= 104

Follow up: Can you come up with an algorithm that runs in O(n log(n)) time complexity?

 解法1:

class Solution {
    public int lengthOfLIS(int[] nums) {
        int[] dp = new int[nums.length];
        int result = 1;
        Arrays.fill(dp, 1);
        for(int i=0;i<nums.length-1;i++){
            for(int j=i+1;j<nums.length;j++){
                if(nums[i] < nums[j]) dp[j] = Math.max(dp[j], dp[i]+1);
                result = Math.max(result, dp[j]);
            }
        }
        return result;
    }
}

 时间复杂度: O(N2)

解法2:

class Solution {
    public int lengthOfLIS(int[] nums) {
        List<Integer> list = new ArrayList();
        for(int i=0;i<nums.length;i++){
            int pos = binarySearch(list, nums[i]);
            if(pos >= list.size()) list.add(nums[i]);
            else list.set(pos, nums[i]);
        }
        return list.size();
    }
    private int binarySearch(List<Integer> list, int target){
        int left = 0,right = list.size();
        while(left < right){
            int mid = left+(right-left)/2;
            if(list.get(mid) >= target) right = mid;
            else left = mid+1;
        }
        return left;
    }
}

 时间复杂度:O(NlogN)

 

标签:right,nums,int,list,subsequence,longest,increasing,left
来源: https://www.cnblogs.com/cynrjy/p/16598307.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有