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

hdu-2328(暴力枚举+kmp)

时间:2018-08-17 23:38:21      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:highlight   sync   name   clu   代码   else   i++   iostream   div   

题意:给你n个字符串,问你这n个串的最长公共子串

解题思路:暴力枚举任意一个字符串的所有子串,然后暴力匹配,和hdu1238差不多的思路吧,这里用string解决的;

代码:

#include<iostream>
#include<string>
#include<cstdio>
#include<algorithm>
using namespace std;
string t;
int main()
{
    int n;
    string a[4050];
    ios::sync_with_stdio(0);
    while((cin>>n)&&n)
    {
        int cot;
        int maxx=0;
        for(int i=1;i<=n;i++)
            cin>>a[i];
        int len=a[1].size();
        for(int i=0;i<len;i++)
        {
            for(int j=1;j<=len-i;j++)
            {
                if(j<maxx)
                    continue;
                cot=0;
                for(int k=2;k<=n;k++)
                {
                    if(a[k].find(a[1].substr(i,j))==string::npos)
                        break;
                    else
                        cot++;
                }
                if(cot==n-1)
                {
                   // cout<<a[1].substr(i,j)<<endl;
                    if(j>maxx)
                    {
                        maxx=j;t=a[1].substr(i,j);
                    }
                    else if(j==maxx)
                    {
                        if(t>a[1].substr(i,j))
                            t=a[1].substr(i,j);
                    }
                }
            }
        }
        if(maxx==0)
            cout<<"IDENTITY LOST";
        else
            cout<<t;
        cout<<endl;
    }
}

  

hdu-2328(暴力枚举+kmp)

标签:highlight   sync   name   clu   代码   else   i++   iostream   div   

原文地址:https://www.cnblogs.com/huangdao/p/9495487.html

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