码迷,mamicode.com
首页 > 其他好文 > 详细

PAT T1015 Letter-moving Gam

时间:2020-02-13 12:57:55      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:style   namespace   bit   ons   ++   space   maxlength   ret   class   

双下标法找最长公共子序列(不能删除字符)

#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

标签:style   namespace   bit   ons   ++   space   maxlength   ret   class   

原文地址:https://www.cnblogs.com/zhanglichen/p/12302913.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!