#673
Number of Longest Increasing Subsequence
specialist · 845 · lc medium +31 · verified · 51.4% accepted · 7,286 likes · top 40%
Description
Given an integer array nums, count and return the total number of distinct subsequences that achieve the maximum length and are strictly increasing.
Example 1:
Input: nums = [1,3,5,4,7]
Output: 2
Explanation: The two longest increasing subsequences are [1, 3, 4, 7] and [1, 3, 5, 7].
Example 2:
Input: nums = [2,2,2,2,2]
Output: 5
Explanation: The length of the longest increasing subsequence is 1, and there are 5 increasing subsequences of length 1, so output 5.
Code
1
2
3