-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathLongestRepeatingSubsequence.cpp
56 lines (52 loc) · 1.03 KB
/
LongestRepeatingSubsequence.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
#include <bits/stdc++.h>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <cstring>
#include <chrono>
#include <complex>
#define endl "\n"
#define ll long long int
#define vi vector<int>
#define vll vector<ll>
#define vvi vector < vi >
#define pii pair<int,int>
#define pll pair<long long, long long>
#define mod 1000000007
#define inf 1000000000000000001;
#define all(c) c.begin(),c.end()
#define mp(x,y) make_pair(x,y)
#define mem(a,val) memset(a,val,sizeof(a))
#define eb emplace_back
#define f first
#define s second
using namespace std;
int dp[1002][1002];
int main() {
std::ios::sync_with_stdio(false);
int T;
cin >> T;
long l1, l2;
string s1, s2;
// cin.ignore(); must be there when using getline(cin, s)
while (T--)
{
memset(dp, 0, sizeof(dp));
cin >> l1;
cin >> s1;
for(int i=1;i<=l1;i++){
for(int j=1;j<=l1;j++){
if(s1[i-1]==s1[j-1] && i!=j)
{
dp[i][j]=1+dp[i-1][j-1];
}
else
{
dp[i][j]=max(dp[i][j-1],dp[i-1][j]);
}
}
}
cout << dp[l1][l1] << '\n';
}
return 0;
}