-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLCS_BottomUp.cpp
47 lines (44 loc) · 1.16 KB
/
LCS_BottomUp.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
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <cmath>
#include <vector>
#include <list>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <queue>
#include <ctime>
#include <cassert>
#include <complex>
#include <stack>
#include <string>
#include <cstring>
#include <chrono>
#include <random>
#include <bitset>
#include <sstream>
#include <iomanip>
using namespace std;
int32_t main()
{
string s = "BABCD";
string t = "ABEDG";
string result = "";
vector<vector<int> > dp(6, vector<int>(6, 0));
for(int i = s.size()-1 ; i >= 0 ; i--){
for(int j = t.size()-1 ; j >= 0 ; j--){
//Considering the case where the characters are equal we will call the next character in line
if(s[i] == t[j]){
dp[i][j] = 1 + dp[i+1][j+1];
}
else
//considering the case where the characters are not equal in that case we will skip the character one by one and find the maximum length in both the cases
dp[i][j] = max(dp[i][j+1], dp[i+1][j]);
}
}
cout<<dp[0][0]<<endl;
cout<<result<<endl;
}