LeetCode 0940. Distinct Subsequences II Solution in Java, C++, Python & More | Explanation + Code

CoderIndeed
0
0940. Distinct Subsequences II

Description

Given a string s, return the number of distinct non-empty subsequences of s. Since the answer may be very large, return it modulo 109 + 7.

A subsequence of a string is a new string that is formed from the original string by deleting some (can be none) of the characters without disturbing the relative positions of the remaining characters. (i.e., "ace" is a subsequence of "abcde" while "aec" is not.

 

Example 1:

Input: s = "abc"
Output: 7
Explanation: The 7 distinct subsequences are "a", "b", "c", "ab", "ac", "bc", and "abc".

Example 2:

Input: s = "aba"
Output: 6
Explanation: The 6 distinct subsequences are "a", "b", "ab", "aa", "ba", and "aba".

Example 3:

Input: s = "aaa"
Output: 3
Explanation: The 3 distinct subsequences are "a", "aa" and "aaa".

 

Constraints:

  • 1 <= s.length <= 2000
  • s consists of lowercase English letters.

Solutions

Solution 1

PythonJavaC++GoTypeScriptRustC
class Solution: def distinctSubseqII(self, s: str) -> int: mod = 10**9 + 7 n = len(s) dp = [[0] * 26 for _ in range(n + 1)] for i, c in enumerate(s, 1): k = ord(c) - ord('a') for j in range(26): if j == k: dp[i][j] = sum(dp[i - 1]) % mod + 1 else: dp[i][j] = dp[i - 1][j] return sum(dp[-1]) % mod(code-box)

Solution 2

PythonJavaC++Go
class Solution: def distinctSubseqII(self, s: str) -> int: mod = 10**9 + 7 dp = [0] * 26 for c in s: i = ord(c) - ord('a') dp[i] = sum(dp) % mod + 1 return sum(dp) % mod(code-box)

Solution 3

Python
class Solution: def distinctSubseqII(self, s: str) -> int: mod = 10**9 + 7 dp = [0] * 26 ans = 0 for c in s: i = ord(c) - ord('a') add = ans - dp[i] + 1 ans = (ans + add) % mod dp[i] += add return ans(code-box)

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Accept !