Baoyan summer camp machine test preparation

1. The longest common subsequence (string) (ACwing897) (N^2)

#include <bits/stdc++.h>
using namespace std;
const int N = 1e3 + 10;
int f[N][N];

Guess you like

Origin blog.csdn.net/m0_51339444/article/details/131857563