Class Solution
-
- All Implemented Interfaces:
public final class Solution3686 - Number of Stable Subsequences.
Hard
You are given an integer array
nums.A subsequence is stable if it does not contain three consecutive elements with the same parity when the subsequence is read in order (i.e., consecutive inside the subsequence ).
Return the number of stable subsequences.
Since the answer may be too large, return it modulo <code>10<sup>9</sup> + 7</code>.
Example 1:
Input: nums = 1,3,5
Output: 6
Explanation:
Stable subsequences are
[1],[3],[5],[1, 3],[1, 5], and[3, 5].Subsequence
[1, 3, 5]is not stable because it contains three consecutive odd numbers. Thus, the answer is 6.
Example 2:
Input: nums = 2,3,4,2
Output: 14
Explanation:
The only subsequence that is not stable is
[2, 4, 2], which contains three consecutive even numbers.All other subsequences are stable. Thus, the answer is 14.
Constraints:
<code>1 <= nums.length <= 10<sup>5</sup></code>
<code>1 <= numsi<= 10<sup>5</sup></code>
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final IntegercountStableSubsequences(IntArray nums)-
-
Method Detail
-
countStableSubsequences
final Integer countStableSubsequences(IntArray nums)
-
-
-
-