1582. [算法课动态规划]最长公共子序列

include

using namespace std;

include

int longestCommonSubsequence(string text1, string text2) {

int m = text1.length(), n = text2.length(); vector<vector<int> > dp(m + 1, vector<int>(n + 1)); for (int i = 1; i <= m; i++) { char c1 = text1.at(i - 1); for (int j = 1; j <= n; j++) { char c2 = text2.at(j - 1); if (c1 == c2) { dp[i][j] = dp[i - 1][j - 1] + 1; } else { dp[i][j] = max(dp[i - 1][j], dp[i][j - 1]); } } } return dp[m][n]; }

int main() {

string s1,s2; cin>>s1>>s2; cout<<longestCommonSubsequence(s1,s2);

}