Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
112118 梁颢城 最长公共子序列 C++ 通过 100 1 MS 1804 KB 410 2023-11-25 10:32:56

Tests(10/10):


#include<bits/stdc++.h> using namespace std; const int maxn = 1e2+1e3; string s,t; int f[maxn][maxn]; signed main(){ cin >> s >> t; int len1 = s.size(); int len2 = t.size(); for(int i = 1;i <= len1;i++){ for(int j = 1;j <= len2;j++){ f[i][j] = max(f[i-1][j],f[i][j-1]); if(s[i-1] == t[j-1]) f[i][j] = max(f[i][j],f[i-1][j-1]+1); } } cout << f[len1][len2]; return 0; }


测评信息: