首页 > TAG信息列表 > P1435

P1435 [IOI2000] 回文字串 / [蓝桥杯 2016 省] 密码脱落

https://www.luogu.com.cn/problem/P1435动态规划,LCS黄色题 字符串输入下标从0开始!!!!!!!!!!!!!!!!!!!  #include<cstdio> #include<cstring> #include<iostream> #include<cstdlib> using namespace std; int n; int dp[5001][5001]; char str1[5001],str2[5001]