Table of contents
Description
Question Links: LeetCode 2466, LintCode 3854
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:
- Append the character
'0'zerotimes. - Append the character
'1'onetimes.
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 10^9 + 7.
Example 1:
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:
Input: low = 2, high = 3, zero = 1, one = 2
Output: 5
Explanation: The good strings are "00", "11", "000", "110", and "011".
Constraints:
1 <= low <= high <= 10^51 <= zero, one <= low
Hint 1
Calculate the number of good strings with length less or equal to some constant x.
Hint 2
Apply dynamic programming using the group size of consecutive zeros and ones.
Idea
We could use dynamic programming (induction, 数学 归纳法). We use an array dp to calculate the result and dp[i] represents the number of ways for a good string with length i.
Let’s use example 1 above.
- When
i==0, there is only one way (empty string). - When
i==1, we could either append0or1to the empty string. Sodp[1]==2. - When
i==2, we could start fromdp[1](string of length 2) and append0(dp[1]) or1(dp[1]). Sodp[2]==dp[1]+dp[1] == 4.
Complexity: Time , Space .
Python
class Solution:
"""87 ms, 22.22 mb"""
def countGoodStrings(self, low: int, high: int, zero: int, one: int) -> int:
dp, mod = [1] + [0] * high, 10 ** 9 + 7 # res with length i
for i in range(1, high + 1):
if i >= zero:
dp[i] += dp[i - zero] # appending zero '0' on top of dp[i-zero]
if i >= one:
dp[i] += dp[i - one] # appending one '1' on top of dp[i-one]
dp[i] %= mod
return sum(dp[low: high + 1]) % mod
Java
public static int countGoodStrings(int low, int high, int zero, int one) {
int mod = 1_000_000_007;
long[] dp = new long[high + 1];
dp[0] = 1;
for (int i = 1; i <= high; i++) {
if (i >= zero) dp[i] += dp[i - zero];
if (i >= one) dp[i] += dp[i - one];
dp[i] %= mod;
}
long res = 0;
for (int i = low; i <= high; i++) res += dp[i];
return (int) (res % mod);
}
C++
int countGoodStrings(int low, int high, int zero, int one) {
const int mod = 1e9 + 7;
vector<long> dp(high + 1, 0);
dp[0] = 1;
for (int i = 1; i <= high; i++) {
if (i >= zero) dp[i] += dp[i - zero];
if (i >= one) dp[i] += dp[i - one];
dp[i] %= mod;
}
long res = 0;
for (int i = low; i <= high; i++) res += dp[i];
return (int) (res % mod);
}
Rust
pub fn count_good_strings(low: i32, high: i32, zero: i32, one: i32) -> i32 {
let high = high as usize;
let low = low as usize;
let zero = zero as usize;
let one = one as usize;
let modv: i64 = 1_000_000_007;
let mut dp = vec![0i64; high + 1];
dp[0] = 1;
for i in 1..=high {
if i >= zero { dp[i] += dp[i - zero]; }
if i >= one { dp[i] += dp[i - one]; }
dp[i] %= modv;
}
let res: i64 = dp[low..=high].iter().sum::<i64>() % modv;
res as i32
}