PAT T1015 Letter-moving Gam
Posted zhanglichen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PAT T1015 Letter-moving Gam相关的知识,希望对你有一定的参考价值。
双下标法找最长公共子序列(不能删除字符)
#include<bits/stdc++.h> using namespace std; const int maxn=1014; string s; string t; int main () { cin>>s>>t; int maxLength=0; int st,ed; for (int i=0;i<s.length();i++) { st=i; ed=0; while (st<s.length()&&ed<s.length()) { if (s[ed]==t[st]) st++; ed++; } maxLength=max(maxLength,st-i); } printf ("%d",s.length()-maxLength); return 0; }
以上是关于PAT T1015 Letter-moving Gam的主要内容,如果未能解决你的问题,请参考以下文章