程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> POJ 3450 Corporate Identity 暴力枚舉+KMP

POJ 3450 Corporate Identity 暴力枚舉+KMP

編輯:C++入門知識

 


這道題和剛剛吐槽的POJ3080一樣的題目,這是數據范圍大了一些,

開始覺得肯定會超時,但是還是在上面修改了一些然後提交了,

果斷1A啊~~~~~~~

 

 

AC代碼: 寫的有點亂,不過思路應該很清晰,呵呵

 

#include <iostream>   
#include <cstdio>   
#include <cstring>   
#include <string>   
#include <cstdlib>   
#include <cmath>   
#include <vector>   
#include <list>   
#include <deque>   
#include <queue>   
#include <iterator>   
#include <stack>   
#include <map>   
#include <set>   
#include <algorithm>   
#include <cctype>   
using namespace std;  
  
char s[4002][222];  
int n,wlen,next[222];  
char word[222];  
int be;  
  
void getnext(char *p)  
{  
    int j=0,k=-1;  
    next[0]=-1;  
    while(j<wlen)  
    {  
        if(k==-1||p[j]==p[k])  
        {  
            j++;    k++;  
            next[j]=k;  
        }  
        else  
            k=next[k];  
    }  
}  
  
bool kmp(char *text,char *word)  
{  
    int i=0,j=0,k=0,tlen=strlen(text);  
    while(i<tlen)  
    {  
        if(j==-1||text[i]==word[j])  
        {  
            i++;    j++;  
        }  
        else  
            j=next[j];  
        if(j==wlen)  
            return true;  
    }  
    return false;  
}  
  
int main()  
{  
    int i,j,k,T,be;  
    while(scanf("%d",&n)&&n)  
    {  
        scanf("%s",s[0]);  
        int ll=strlen(s[0]);  
        char ss[222];  
        strcpy(ss,s[0]);  
        int ppp=0;  
        for(i=1;i<n;i++)  
        {  
            scanf("%s",s[i]);  
            int k=strlen(s[i]);  
            if(k<ll)  
                strcpy(ss,s[i]),ll=k,ppp=i;  
        }  
        strcpy(s[ppp],s[0]);  
        strcpy(s[0],ss);  
        int be=0,len=0;  
        int h=0;  
        char pp[222]="";  
        for(i=1;i<=ll;i++)  
        {  
            wlen=i;  
            int g=0,kkk=0;  
            for(j=0;j+i<=ll;j++)  
            {  
                strncpy(word,s[0]+j,i);  
                word[wlen]='\0';  
                getnext(word);  
                int f=0;  
                for(k=1;k<n;k++)  
                    if(!kmp(s[k],word))//匹配不成功   
                    {  
                        f=1;break;  
                    }  
                if(f==0)//當從j開始的i個匹配成功   
                {  
                    be=j;   len=i;  
                    if(kkk==0||strcmp(pp,word)>0)  
                    {  
                        kkk=1;strcpy(pp,word);  
                    }  
                    g=1;  
                }  
            }  
            if(g==0)//當有i個字符的時候都沒有匹配   
                break;  
        }  
        if(len==0)  
            printf("IDENTITY LOST\n");  
        else  
        {  
            printf("%s\n",pp);  
        }  
    }  
    return 0;  
}  

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved