poj 3450 Corporate Identity 【暴力KMP】

来源:互联网 发布:linux打包压缩命令 编辑:程序博客网 时间:2024/05/22 06:52
Corporate Identity
Time Limit: 3000MS Memory Limit: 65536KTotal Submissions: 5695 Accepted: 2074

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

3aabbaabbabbababbbbbbbabb2xyzabc0

Sample Output

abb

IDENTITY LOST

题意:给你N个字符串,让你找出最长的公共子串。若不存在输出IDENTITY LOST,若存在多个长度相等的,输出字典序最小的。

思路:暴力KMP,枚举一个字符串的所有子串,然后判断其它字符串是否包含该子串。若全部包含则更新子串,否则继续枚举下一个子串。

AC代码:

#include <cstdio>#include <cstring>#include <algorithm>using namespace std;char str[4001][201];int f[201];void getfail(char *s){    int len = strlen(s);    f[0] = f[1] = 0;    for(int i = 1; i < len; i++)    {        int j = f[i];        while(j && s[i] != s[j])            j = f[j];        f[i+1] = s[i]==s[j] ? j+1 : 0;    }}bool find(char *a, char *b){    int la = strlen(a);    int lb = strlen(b);    int j = 0;    for(int i = 0; i < la; i++)    {        while(j && a[i] != b[j])            j = f[j];        if(a[i] == b[j])            j++;        if(j >= lb)            return true;    }    return false;}int main(){    int N;    while(scanf("%d", &N), N)    {        for(int i = 0; i < N; i++)            scanf("%s", str[i]);        int l = strlen(str[0]);        char ss[201];        char ans[201];        memset(ans, '\0', sizeof(ans));        for(int i = 0; i < l; i++)//枚举起点        {            for(int j = i; j < l; j++)//枚举终点            {                int p = 0;                for(int k = i; k <= j; k++)                    ss[p++] = str[0][k];                ss[p] = '\0';                getfail(ss);//失配函数                bool flag = true;                for(int k = 1; k < N; k++)                {                    if(!find(str[k], ss))//有一个不匹配                    {                        flag = false;                        break;                    }                }                if(flag)                {                    if(strlen(ss) > strlen(ans))//比较长度                        strcpy(ans, ss);                    else if(strlen(ss) == strlen(ans) && strcmp(ss, ans) < 0)//字典序                        strcpy(ans, ss);                }            }        }        if(strlen(ans) == 0)            printf("IDENTITY LOST\n");        else            printf("%s\n", ans);    }    return 0;}


0 0