Class Solution
-
- All Implemented Interfaces:
public final class Solution3177 - Find the Maximum Length of a Good Subsequence II\.
Hard
You are given an integer array
numsand a non-negative integerk. A sequence of integersseqis called good if there are at mostkindicesiin the range[0, seq.length - 2]such thatseq[i] != seq[i + 1].Return the maximum possible length of a good subsequence of
nums.Example 1:
Input: nums = 1,2,1,1,3, k = 2
Output: 4
Explanation:
The maximum length subsequence is <code><ins>1</ins>,<ins>2</ins>,<ins>1</ins>,<ins>1</ins>,3</code>.
Example 2:
Input: nums = 1,2,3,4,5,1, k = 0
Output: 2
Explanation:
The maximum length subsequence is <code><ins>1</ins>,2,3,4,5,<ins>1</ins></code>.
Constraints:
<code>1 <= nums.length <= 5 * 10<sup>3</sup></code>
<code>1 <= numsi<= 10<sup>9</sup></code>
0 <= k <= min(50, nums.length)
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final IntegermaximumLength(IntArray nums, Integer k)-
-
Method Detail
-
maximumLength
final Integer maximumLength(IntArray nums, Integer k)
-
-
-
-