-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepeating_subsequence.cpp
47 lines (47 loc) · 1.13 KB
/
repeating_subsequence.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
// Problem Link - https://www.interviewbit.com/problems/repeating-subsequence/
/* Problem Solubion
int topdown(string A)
{
int n = A.length();
vector<vector<int>> dp(n+1, vector<int> (n+1));
for(int i=0; i<=n; i++)
{
for(int j=0; j<=n; j++)
{
if(i == 0 || j==0) dp[i][j]=0;
else if(A[i-1] == A[j-1] && i != j) dp[i][j] = 1+dp[i-1][j-1];
else dp[i][j] = max(dp[i-1][j], dp[i][j-1]);
}
}
return dp[n][n];
}
int Solution::anytwo(string A) {
int x = topdown(A);
if(x >= 2) return 1;
else return 0;
}
*/
#include <bits/stdc++.h>
using namespace std;
int topdown(string A)
{
int n = A.length();
vector<vector<int>> dp(n+1, vector<int> (n+1));
for(int i=0; i<=n; i++)
{
for(int j=0; j<=n; j++)
{
if(i == 0 || j==0) dp[i][j]=0;
else if(A[i-1] == A[j-1] && i != j) dp[i][j] = 1+dp[i-1][j-1];
else dp[i][j] = max(dp[i-1][j], dp[i][j-1]);
}
}
return dp[n][n];
}
int main()
{
string A = "abaefesafeaabababaab";
int x = topdown(A);
if(x >= 2) return 1;
else return 0;
}