摘要: 最长回文子序列 #include <bits/stdc++.h> using namespace std; const int N = 1010, INF = 0x3f3f3f3f; int dp[N][N], n; string str; void longest_palindromic_subs 阅读全文
posted @ 2020-07-19 11:06 Waitti 阅读(150) 评论(0) 推荐(0) 编辑