HDU 2594 Simpsons’ Hidden Talents (KMP)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2594

这题直接用KMP算法就可以做出来,不过我还尝试了用扩展的kmp,这题用扩展的KMP效率没那么高。

KMP算法:

#include<stdio.h>
#include<iostream>
#include<string.h>
using namespace std;
int next[50001];
char p[50000],s[50000];
void getnext()
{
   int plen=strlen(p),k=0,j=1;
   next[0]=-1;next[1]=0;
   while (j<plen)
     {
       if (k==-1||p[j]==p[k])
        {
          k++;j++;
          next[j]=k;
        }
       else k=next[k];
     }
}
int kmp()
{
   int i=0,j=0,slen=strlen(s),plen=strlen(p);
   while (i<slen)
     {
       if (j == -1 || s[i] == p[j])
         {
           i++;
           j++;
         }
       else  j=next[j];
     }
     if (j==-1) j=0;
     return j;
}
int main()
{
    int i;
    while (scanf("%s%s",p,s)!=EOF)
    {
        getnext();
        i=kmp();
        if (i)
        {
            for (int j=0;j<i;j++)
               printf("%c",p[j]);
                 printf(" %d\n",i);
        }
        else printf("0\n");
    }
    return 0;
}

扩展的KMP:

#include<stdio.h>
#include<iostream>
#include<string.h>
using namespace std;
char S[50000],T[50000];
int A[50001],B[50001],sl,tl;
void getA()
{
   int j=0;
   while(1+j<tl&&T[0+j]==T[1+j]) j++;
     A[1]=j;
     int k=1;
     for(int i=2;i<tl;i++)
       {
          int len=k+A[k]-1,l=A[i-k];
          if(l<len-i+1) A[i]=l;
          else
            {
               j=max(0,len-i+1);
               while(i+j<tl&&T[i+j]==T[0+j])
               j=j+1;
               A[i]=j;k=i;
            }
       }
}
void getB()
{
  getA();
  int j=0;
  while(j<sl&&j<tl&&T[0+j]==S[0+j])
    j++;B[0]=j;
      int k=0;
      for(int i=1;i<sl;i++)
        {
          int len=k+B[k]-1,l=A[i-k];
          if(l<len-i+1) B[i]=l;
          else
            {
              j=max(0,len-i+1);
              while(i+j<sl&&j<tl&&S[i+j]==T[0+j])
              j=j+1;
              B[i]=j,k=i;
            }
        }
}
int main()
{
  int i;
  while (~scanf ("%s %s",T,S))
  {
      int num=0;
      sl=strlen(S),tl=strlen(T);
      getB();
    for (i=0;i<sl;i++)
      if (B[i]==sl-i)
      {
          num=B[i];
          break;
      }
    if (num>0)
      {
          for (int j=0;j<num;j++)
             printf("%c",T[j]);
          printf(" ");
      }
    printf("%d\n",num);
  }
  return 0;
}

HDU 2594 Simpsons’ Hidden Talents (KMP)

时间: 2024-10-14 10:51:12

HDU 2594 Simpsons’ Hidden Talents (KMP)的相关文章

HDU 2594 Simpsons’ Hidden Talents (字符串-KMP)

Simpsons' Hidden Talents Problem Description Homer: Marge, I just figured out a way to discover some of the talents we weren't aware we had. Marge: Yeah, what is it? Homer: Take me for example. I want to find out if I have a talent in politics, OK? M

HDU 2594 Simpsons’ Hidden Talents(辛普森一家的潜在天赋)

HDU 2594 Simpsons’ Hidden Talents(辛普森一家的潜在天赋) Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) [Description] [题目描述] Homer: Marge, I just figured out a way to discover some of the talents we weren’t aware we had. Marge:

hdu 2594 Simpsons’ Hidden Talents 【KMP】

题目链接:http://acm.acmcoder.com/showproblem.php?pid=2594 题意:求最长的串 同时是s1的前缀又是s2的后缀.输出子串和长度. 思路:kmp 代码: #include <vector> #include <string> #include <algorithm> #include <iostream> #include <stdio.h> #include <string.h> usin

HDU 2594 Simpsons’ Hidden Talents KMP题解

KMP的应用.直接使用s1产生next 数组,然后在s2中搜索s1,那么记录最后一个搜索到的数值,就是s1的前缀在s2中的最长后缀了. 本题应该不能直接调用strstr了吧. #include <stdio.h> #include <vector> #include <string.h> #include <algorithm> #include <iostream> #include <string> #include <li

HDU 2594 Simpsons’ Hidden Talents (KMP)

#include <stdio.h> #include <string.h> int next[50005]; char str1[50005],str2[50005]; void build_next(int len2) { int i=0,j=-1; next[0] = -1; while (i < len2) { if (j==-1 || str2[i] == str2[j]) { i++; j++; if (str2[i] != str2[j]) { next[i]

hdu 2594 Simpsons’ Hidden Talents(KMP入门)

Simpsons’ Hidden Talents Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 4543    Accepted Submission(s): 1648 Problem Description Homer: Marge, I just figured out a way to discover some of the t

HDU 2594 - Simpsons’ Hidden Talents(KMP)

题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=2594 题目描述: 给定两个字符串s1,s2,问是否存在一个最长的子串,使得这个子串既是s1的前缀又是s2的后缀. 题解: 既然是要求s1的前缀与s2后缀,那么只要将s1与s2合并成一个字符串str,再来对这个字符串进行一波kmp就可以知道题目要求的前后缀是否存在了. 字符串的合并最方便的是string,所以用C++的做法做这道题. 不过这种做法要注意的是,如果s1与s2的内容相同,那么最终会得到超

【HDU 3746】Simpsons’ Hidden Talents(KMP求循环节)

求next数组,(一般有两种,求循环节用的见代码)求出循环节的长度. #include <cstdio> #define N 100005 int n,next[N]; char s[N]; int main(){ scanf("%d",&n); while(n--){ scanf("%s",s); int i=0,k=-1; next[0]=k; while(s[i]){ if(k==-1||s[i]==s[k]) { i++; k++; ne

hdu 2594-Simpsons’ Hidden Talents(KMP)

题意: 给你两个串a,b,求既是a的前缀又是b的后缀的最长子串的长度. 分析: 很自然的想到把两个串连接起来,根据KMP的性质求即可 #include <map> #include <set> #include <list> #include <cmath> #include <queue> #include <stack> #include <cstdio> #include <vector> #includ