hdu 2328 & poj 3450

本文介绍了一个算法问题,旨在从多个商标中找到最长的公共字母序列,作为新的公司标识。通过KMP算法实现字符串匹配,确保即使商标稍有不同也能找出共性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

点击打开链接    点击打开链接

Corporate Identity

Time Limit: 9000/3000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 2189    Accepted Submission(s): 843


Problem Description
Beside other services, ACM helps companies to clearly state their “corporate identity”, which includes company logo but also other signs, like trademarks. One of such companies is Internet Building Masters (IBM), which has recently asked ACM for a help with their new identity. IBM do not want to change their existing logos and trademarks completely, because their customers are used to the old ones. Therefore, ACM will only change existing trademarks instead of creating new ones.

After several other proposals, it was decided to take all existing trademarks and find the longest common sequence of letters that is contained in all of them. This sequence will be graphically emphasized to form a new logo. Then, the old trademarks may still be used while showing the new identity.

Your task is to find such a sequence.
 

Input
The input contains several tasks. Each task begins with a line containing a positive integer N, the number of trademarks (2 ≤ N ≤ 4000). The number is followed by N lines, each containing one trademark. Trademarks will be composed only from lowercase letters, the length of each trademark will be at least 1 and at most 200 characters.

After the last trademark, the next task begins. The last task is followed by a line containing zero.
 

Output
For each task, output a single line containing the longest string contained as a substring in all trademarks. If there are several strings of the same length, print the one that is lexicographically smallest. If there is no such non-empty string, output the words “IDENTITY LOST” instead.
 

Sample Input
  
3 aabbaabb abbababb bbbbbabb 2 xyz abc 0
 
错了好多次,心态都快炸了,还好这次对了,不多说了,直接上代码。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<string>
using namespace std;
char f[4005][205];
char ans[205];
int Next[205];
void GetNext(char *a)
{
    Next[0]=-1;
    int i=0,j=-1;
    int le=strlen(a);
    while(i<le)
    {
        if(j==-1||a[i]==a[j])
        {
            i++;
            j++;
            Next[i]=j;
        }
        else
            j=Next[j];
    }
}
int kmp(char *a,char *b)
{
    int len1=strlen(a),len2=strlen(b);
    int i=0,j=0;
    while(i<len2)
    {
        if(j==-1||b[i]==a[j])
        {
            i++;
            j++;
        }
        else
            j=Next[j];
        if(j==len1)
            return true;
    }
    return false;
}
int main()
{
    int n;
    while(scanf("%d",&n),n)
    {
        int ma=0;
        for(int i=0;i<n;i++)
            scanf("%s",f[i]);
        int len=strlen(f[0]);
        for(int i=len;i>0;i--)
        {
            for(int j=0;j<=len-i;j++)
            {
                char x[205]={0};
                strncpy(x,f[0]+j,i);
                GetNext(x);
                int flag=1;
                for(int t=1;t<n;t++)
                {
                    if(!kmp(x,f[t]))
                    {
                        flag=0;
                        break;
                    }
                }
                if(flag)
                {
                    if(i>ma||(i==ma&&strcmp(ans,x)>0))
                    {
                        ma=i;
                        strcpy(ans,x);
                    }
                }
            }
        }
        if(ma==0)
            printf("IDENTITY LOST\n");
        else
            printf("%s\n",ans);
    }
    return 0;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值