2562 Count Ways To Build Good Strings
2562 Count Ways To Build Good Strings
Count Ways To Build Good Strings 
Given the integers zero, one, low, and high, we can construct a string by starting with an empty string, and then at each step perform either of the following:
1
2
Append the character '0' zero times.
Append the character '1' one times.
This can be performed any number of times.
A good string is a string constructed by the above process having a length between low and high (inclusive).
Return the number of different good strings that can be constructed satisfying these properties. Since the answer can be large, return it modulo 109 + 7.
Example 1:
1
2
3
4
5
6
7
8
**Input:** low = 3, high = 3, zero = 1, one = 1
**Output:** 8
**Explanation:**
One possible valid good string is "011".
It can be constructed as follows: "" -> "0" -> "01" -> "011".
All binary strings from "000" to "111" are good strings in this example.
Example 2:
1
2
3
4
5
**Input:** low = 2, high = 3, zero = 1, one = 2
**Output:** 5
**Explanation:** The good strings are "00", "11", "000", "110", and "011".
Constraints:
1
2
1 <= low <= high <= 105
1 <= zero, one <= low
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
class Solution:
def countGoodStrings(self, low: int, high: int, zero: int, one: int) -> int:
"""
T[j] = 1 + T[j-zero] + T[j-one] if j >= low
= 0 if j > high
= T[j-zero] + T[j-one]
"""
T = [0] * (high+1)
T[zero] += 1
T[one] += 1
for i in range(min(zero,one),high+1):
if i == min(zero,one):
continue
if i > high+1:
T[i] = 0
continue
if i >= low+1:
T[i] += T[i-zero] + T[i-one]
T[i] = T[i] % (10 ** 9 + 7)
continue
T[i] += T[i-zero] + T[i-one]
T[i] = T[i] % (10 ** 9 + 7)
return sum(T[low:high+2]) % (10 ** 9 + 7)
@cache
def recurse(count, l):
if l > high:
return 0
if l >= low:
return 1 + recurse(count , l + zero) + recurse(count , l + one)
return recurse(count , l + zero) + recurse(count , l + one)
return recurse(0, 0) % (10 ** 9 + 7)
This post is licensed under CC BY 4.0 by the author.