摘要: #include <iostream> using namespace std; const int maxn=100005; int a[maxn],dp[maxn]; int main() { int n; scanf("%d",&n); for(int i=1;i<=n;i++) scanf( 阅读全文
posted @ 2021-05-18 10:08 Acception 阅读(39) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; char a[1005],b[1995]; int dp[1005][1005]; int main() { int n,m; cin>>n>>m>>(a+1)>>(b+1); for(int i=1;i<=n;i++ 阅读全文
posted @ 2021-05-18 10:05 Acception 阅读(34) 评论(0) 推荐(0)