比赛 暑假培训B班二测 评测结果 AAAAAAAAAA
题目名称 牛棚回声 最终得分 100
用户昵称 hello! 运行时间 0.006 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2012-07-22 08:43:59
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<cstring>
using namespace std;
char ss[90],vv[90];
int ls,lv,t=0;
int main()
{
    freopen("echo.in","r",stdin);
    freopen("echo.out","w",stdout);
    cin>>ss;
    cin>>vv;
    ls=strlen(ss);
    lv=strlen(vv);
    int max=0;
    for(int i=0;i<ls;i++)
    {
        for(int j=0;j<lv;j++)
        {
            if(ss[i]==vv[j])
            {
                for(int t=i;t<ls;t++)
                {
                    int w=0;
                    for(int q=i;q<=t;q++)
                    {
                        int temp;
                        temp=q-i;
                        if(ss[q]==vv[j+temp])
                        {
                            w++;
                        }
                         
                    }
                    if(w>max)
                    {
                        max=w;
                    }
                }
            }
        }
    }
    cout<<max<<endl;
    return 0;
}