保研夏令营机试备考

一、最长公共子序列 (字符串)(ACwing897)(N^2)

#include 
using namespace std;
const int N = 1e3 + 10;
int f[N][N];

你可能感兴趣的:(算法,算法,c++,数据结构)