-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathLongestCommonSubseq.cpp
48 lines (42 loc) · 1.1 KB
/
LongestCommonSubseq.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
#include<bits/stdc++.h>
using namespace std;
class Solution
{
public:
//Function to find the length of longest common subsequence in two strings.
int lcs(int x, int y, string s1, string s2)
{
int t[x+1][y+1];
for(int i=0;i<x+1;i++){
for(int j=0;j<y+1;j++){
if(i==0 || j==0){
t[i][j]=0;
}
}
}
for(int i=1;i<x+1;i++){
for(int j=1;j<y+1;j++){
if(s1[i-1]==s2[j-1]){
t[i][j] = 1+t[i-1][j-1];
}else{
t[i][j]=max(t[i-1][j],t[i][j-1]);
}
}
}
return t[x][y];
}
};
int main()
{
int t,x,y;
cin>>t; // Take no. of testcase
while(t--)
{
cin>>x>>y; // Take size of both the strings as input
string s1,s2;
cin>>s1>>s2; // Take both the string as input
Solution ob;
cout << ob.lcs(x, y, s1, s2) << endl;
}
return 0;
}