Problem Description
You are given 3 positive integers zero
, one
, and limit
. A binary array arr
is called stable if:
- The number of occurrences of 0 in
arr
is exactlyzero
. - The number of occurrences of 1 in
arr
is exactlyone
. - Each subarray of
arr
with a size greater thanlimit
must contain both 0 and 1.
Return the total number of stable binary arrays. Since the answer may be very large, return it modulo 10^9 + 7
.
Key Insights
- A valid stable binary array must have
zero
number of 0s andone
number of 1s. - The placement of 0s and 1s must ensure that any subarray larger than
limit
contains at least one 0 and one 1. - Dynamic programming can be leveraged to count the number of valid configurations of the array.
Space and Time Complexity
Time Complexity: O(zero * one)
Space Complexity: O(zero + one)
Solution
We can use dynamic programming to solve this problem. We define a DP table where dp[i][j]
represents the number of ways to arrange i
0s and j
1s such that the stability condition is met. The key steps include:
- Iterating through all possible counts of 0s and 1s.
- Using combinatorial logic to place 0s and 1s while ensuring the subarray condition is satisfied.
- Applying modulo
10^9 + 7
to handle large numbers.