-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path35_DistinctSubSequence.cpp
205 lines (176 loc) · 4.89 KB
/
35_DistinctSubSequence.cpp
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
// https://leetcode.com/problems/distinct-subsequences/
#include <bits/stdc++.h>
using namespace std;
class Solution7
{
// Tabulation: space optimised : SIngle Array
public:
int numDistinct(string s, string t)
{
if (s.length() <= t.length()) return s == t;
vector<double> cp(t.length()+1);
cp[0] = 1;
for (int i = 1; i <= s.length(); ++i)
for (int j = t.length(); j >= 1; --j)
if (s[i-1] == t[j-1]) cp[j] = cp[j-1] + cp[j];
return (int)cp[t.length()];
}
};
class Solution6
{
// Tabulation: space optimised
public:
int numDistinct(string s, string t)
{
if (s.length() <= t.length()) return s == t;
vector<double> cp(t.length()+1), xp(t.length()+1);
cp[0] = xp[0] = 1;
for (int i = 1; i <= s.length(); ++i)
{
for (int j = 1; j <= t.length(); ++j)
{
if (s[i-1] == t[j-1]) xp[j] = cp[j-1] + cp[j];
else xp[j] = cp[j];
}
cp = xp;
}
return (int)cp[t.length()];
}
};
class Solution5
{
// Tabulation:
public:
int numDistinct(string s, string t)
{
if (s.length() <= t.length()) return s == t;
vector<vector<double>> dp(s.length()+1, vector<double> (t.length()+1, 0));
for (int i = 0; i <= s.length(); ++i) dp[i][0] = 1;
for (int i = 1; i <= s.length(); ++i)
{
for (int j = 1; j <= t.length(); ++j)
{
if (s[i-1] == t[j-1]) dp[i][j] = dp[i-1][j-1] + dp[i-1][j];
else dp[i][j] = dp[i-1][j];
}
}
return (int)dp[s.length()][t.length()];
}
};
class Solution4
{
// Recursion: Memoization: Bottom up
public:
int numDistinct(string s, string t)
{
if (s.length() <= t.length()) return s == t;
vector<vector<int>> dp(s.length(), vector<int> (t.length(), -1));
return solve(s, t, dp, s.length()-1, t.length()-1);
}
int solve(string &s, string &t,vector<vector<int>> &dp, int i, int j)
{
if (j == -1 || i == -1) return j == -1;
if (dp[i][j] != -1) return dp[i][j];
if (s[i] == t[j]) return dp[i][j] = solve(s, t, dp, i - 1, j - 1) + solve(s, t, dp, i - 1, j);
else return dp[i][j] = solve(s, t, dp, i - 1, j);
}
};
class Solution3
{
// Recursion: Memoization
public:
int numDistinct(string s, string t)
{
if (s.length() <= t.length()) return s == t;
vector<vector<int>> dp(s.length(), vector<int> (t.length(), -1));
return solve(s, t, dp);
}
int solve(string &s, string &t,vector<vector<int>> &dp, int i = 0, int j = 0)
{
if (j == t.length() || i == s.length()) return j == t.length();
if (dp[i][j] != -1) return dp[i][j];
if (s[i] == t[j]) return dp[i][j] = solve(s, t, dp, i + 1, j + 1) + solve(s, t, dp, i + 1, j);
else return dp[i][j] = solve(s, t, dp, i + 1, j);
}
};
class Solution2
{
// Recursion: Two pointer
public:
int numDistinct(string s, string t)
{
if (s.length() <= t.length()) return s.length() == t.length();
return solve(s, t);
}
int solve(string &s, string &t, int i = 0, int j = 0)
{
if (j == t.length() || i == s.length()) return j == t.length();
if (s[i] == t[j]) return solve(s, t, i + 1, j + 1) + solve(s, t, i + 1, j);
else return solve(s, t, i + 1, j);
}
};
class Solution1
{
// Recursion
public:
int numDistinct(string s, string t)
{
if (s.length() <= t.length()) return s.length() == t.length();
int ans = 0;
string sub;
return solve(s, t, sub, ans);
}
int solve(string &s, string &t, string &sub, int i = 0)
{
if (i == s.length())
{
if (sub == t) return 1;
return 0;
}
// Pick
sub.push_back(s[i]);
int pick = solve(s, t, sub, i + 1);
sub.pop_back();
// Dont Pick
int noPick = solve(s, t, sub, i + 1);
return pick + noPick;
}
};
class Solution
{
// BruteForce: Recursion
public:
int numDistinct(string s, string t)
{
if (s.length() <= t.length())
return s.length() == t.length();
int ans = 0;
string sub;
solve(s, t, sub, ans);
return ans;
}
void solve(string &s, string &t, string &sub, int &ans, int i = 0)
{
if (i == s.length())
{
if (sub == t)
++ans;
return;
}
// Pick
sub.push_back(s[i]);
solve(s, t, sub, ans, i + 1);
sub.pop_back();
// Dont Pick
solve(s, t, sub, ans, i + 1);
}
};
int main()
{
string s = "babgbag", t = "bag";
Solution5 Obj1;
cout << Obj1.numDistinct(s, t);
ios_base::sync_with_stdio(false);
cin.tie(NULL);
return 0;
}