mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 06:38:48 +00:00
36 lines
615 B
C++
36 lines
615 B
C++
#include <iostream>
|
|
#include <algorithm>
|
|
#include <string>
|
|
|
|
using std::cin;
|
|
using std::cout;
|
|
const char endl = '\n';
|
|
|
|
const int N = 1005;
|
|
|
|
int n, m, f[N][N];
|
|
std::string a, b;
|
|
|
|
int main() {
|
|
std::ios::sync_with_stdio(false);
|
|
|
|
cin >> a >> b;
|
|
|
|
a = ' ' + a;
|
|
b = ' ' + b;
|
|
|
|
n = a.size() - 1;
|
|
m = b.size() - 1;
|
|
|
|
for (int i = 1; i <= n; i++) {
|
|
for (int j = 1; j <= m; j++) {
|
|
f[i][j] = std::max({f[i][j], f[i - 1][j], f[i][j - 1]});
|
|
if (a[i] == b[j]) f[i][j] = std::max(f[i][j], f[i - 1][j - 1] + 1);
|
|
}
|
|
}
|
|
|
|
cout << f[n][m] << endl;
|
|
|
|
return 0;
|
|
}
|