Problem Description
Given an integer array nums
, return the length of the longest strictly increasing subsequence.
Key Insights
- A subsequence is derived from another sequence by deleting some elements without changing the order of the remaining elements.
- The problem can be solved using dynamic programming or a combination of dynamic programming and binary search for improved efficiency.
- The use of a helper array (or list) to store the smallest tail of all increasing subsequences found can help in determining the length of the longest increasing subsequence.
Space and Time Complexity
Time Complexity: O(n log(n))
Space Complexity: O(n) or O(1) depending on the method used.
Solution
To solve the problem, we can utilize a dynamic programming approach combined with binary search to maintain an array that keeps track of the smallest possible tail value for all increasing subsequences of various lengths.
- Initialize an empty list
tails
where each index represents the smallest tail of increasing subsequences. - Iterate through each number in the input list
nums
. - For each number, use binary search to determine its position in
tails
. If it can extend the longest subsequence, append it; otherwise, replace the existing value to maintain the minimum tail. - The length of the
tails
list will give us the length of the longest increasing subsequence.