forked from admirerr/DSA-Collection
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDistinct_Subsequences.cpp
More file actions
44 lines (42 loc) · 908 Bytes
/
Copy pathDistinct_Subsequences.cpp
File metadata and controls
44 lines (42 loc) · 908 Bytes
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
#include <iostream>
#include <string>
#include <vector>
using namespace std;
// Paste your Solution class here (choose one implementation, e.g., Tabulation)
class Solution {
const int mod = 1e9+7;
public:
int distinctSubsequences(string s, string t) {
int n = s.size();
int m = t.size();
vector<vector<int>>dp(n+1, vector<int>(m+1, 0));
for(int i = 0; i<=n; i++){
dp[i][0] = 1;
}
for(int i = 1; i<=m; i++){
dp[0][i] = 0;
}
for(int i = 1; i<=n; i++){
for(int j =1; j<=m; j++){
if(s[i-1] == t[j-1]){
dp[i][j] = (dp[i-1][j-1] + dp[i-1][j])%mod;
}
else{
dp[i][j] = dp[i-1][j];
}
}
}
return dp[n][m];
}
};
int main() {
string s, t;
cout << "Enter string s: ";
cin >> s;
cout << "Enter string t: ";
cin >> t;
Solution sol;
int result = sol.distinctSubsequences(s, t);
cout << "Number of distinct subsequences: " << result << endl;
return 0;
}