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 modulo 10^9 + 7.
Key Insights
- A stable binary array must have a specific arrangement of 0s and 1s to avoid violating the subarray condition.
- The placement of 1s must be strategized to ensure that no segment longer than
limit
contains only 0s or only 1s. - The problem can be approached using dynamic programming to count valid distributions of 0s and 1s.
Space and Time Complexity
Time Complexity: O(zero * one)
Space Complexity: O(zero + one)
Solution
To solve this problem, we can use dynamic programming. We will create a table dp[i][j]
where i
represents the count of 0s used so far and j
represents the count of 1s used. The value at dp[i][j]
will represent the number of stable binary arrays that can be formed with i
0s and j
1s.
The algorithm will:
- Initialize a dynamic programming table.
- Iterate through each possible count of 0s and 1s.
- For each combination of 0s and 1s, calculate the number of valid arrangements based on previous counts.
- Ensure that the conditions for stability (subarray length) are met.
- Return the total count of stable arrays modulo 10^9 + 7.