2466. Count Ways To Build Good Strings
https://youtu.be/JKpVHG2mhbk?si=3Ak7-dfYaYnRK9AZ
class Solution:
def countGoodStrings(self, low: int, high: int, zero: int, one: int) -> int:
mod = 10**9 + 7
dp = {}
def dfs(length):
if length > high:
return 0
if length in dp:
return dp[length]
# if low <= length <= high:
# dp[length] = 1 # 현재 길이
# else:
# dp[length] = 0
dp[length] = 1 if length >= low else 0
dp[length] += dfs(length + zero) + dfs(length + one)
return dp[length] % mod
return dfs(0)
'LeetCode > DP심화' 카테고리의 다른 글
983. Minimum Cost For Tickets (0) | 2025.01.13 |
---|---|
91. Decode Ways (0) | 2025.01.13 |
2140. Solving Questions With Brainpower (0) | 2025.01.12 |
474. Ones and Zeroes (0) | 2025.01.12 |
377. Combination Sum IV (0) | 2025.01.12 |