[InterviewBit] Distinct Subsequences

Distinct Subsequences

  • Time :
  • Space :
1
2
3
4
5
6
7
8
9
10
11
12
13
int Solution::numDistinct(string A, string B) {
int n = A.length(), m = B.length();
vector<vector<int>> dp(n + 1, vector<int>(m + 1));
for(int i = 0; i <= n; i++) dp[i][0] = 1;
for(int i = 1; i <= n; i++) {
for(int j = 1; j <= m; j++) {
dp[i][j] = dp[i-1][j];
if(A[i-1] == B[j-1]) dp[i][j] += dp[i-1][j-1];
}
}
return dp[n][m];
}

Author: Song Hayoung
Link: https://songhayoung.github.io/2022/09/10/PS/interviewbit/distinct-subsequences/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.