poj 2752 Seek the Name, Seek the Fame(KMP需转换下思想)

本文介绍了两道使用KMP算法解决的经典题目,一是寻找字符串中既是前缀又是后缀的子串长度,二是判断一个字符串能否由另一个较短的字符串重复组成。

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

 

poj 2752 Seek the Name, Seek the Fame(KMP需转换下思想)

分类: 字符串   239人阅读  评论(0)  收藏  举报
Seek the Name, Seek the Fame
Time Limit: 2000MS Memory Limit: 65536K
Total Submissions: 10204 Accepted: 4921

Description

The little cat is so famous, that many couples tramp over hill and dale to Byteland, and asked the little cat to give names to their newly-born babies. They seek the name, and at the same time seek the fame. In order to escape from such boring job, the innovative little cat works out an easy but fantastic algorithm: 

Step1. Connect the father's name and the mother's name, to a new string S. 
Step2. Find a proper prefix-suffix string of S (which is not only the prefix, but also the suffix of S). 

Example: Father='ala', Mother='la', we have S = 'ala'+'la' = 'alala'. Potential prefix-suffix strings of S are {'a', 'ala', 'alala'}. Given the string S, could you help the little cat to write a program to calculate the length of possible prefix-suffix strings of S? (He might thank you by giving your baby a name:) 

Input

The input contains a number of test cases. Each test case occupies a single line that contains the string S described above. 

Restrictions: Only lowercase letters may appear in the input. 1 <= Length of S <= 400000. 

Output

For each test case, output a single line with integer numbers in increasing order, denoting the possible length of the new baby's name.

Sample Input

ababcababababcabab
aaaaa

Sample Output

2 4 9 18
1 2 3 4 5

Source

题意

给你一个字符串。要你找出既是前缀又是后缀的子串长度的可能值。按字典序输出。

思路:

转化下思路其实很简单。既然既是前缀又是后缀。直接用文本串构造一个失配数组。然后直接匹配文本串的文本末。即txt[n].n=strlen(n)。而长度就为f[j]。想一想就明白了。感觉思想还是蛮好的。

详细见代码:

[cpp]  view plain copy
  1. #include <iostream>  
  2. #include<string.h>  
  3. #include<stdio.h>  
  4. using namespace std;  
  5. char txt[400100];  
  6. int f[400100],ans[400100],cnt;  
  7. void getf(char *p)//得到失配数组  
  8. {  
  9.     int i,j,m=strlen(p);  
  10.     f[0]=f[1]=0;  
  11.     for(i=1;i<m;i++)  
  12.     {  
  13.         j=f[i];  
  14.         while(j&&p[j]!=p[i])  
  15.             j=f[j];  
  16.         f[i+1]=p[j]==p[i]?j+1:0;  
  17.     }  
  18. }  
  19. int main()  
  20. {  
  21.     int len,i,j;  
  22.   
  23.     while(~scanf("%s",txt))  
  24.     {  
  25.         getf(txt);  
  26.         len=strlen(txt);  
  27.         cnt=0;  
  28.         j=len;  
  29.         while(f[j])  
  30.         {  
  31.             ans[cnt++]=f[j];  
  32.             j=f[j];  
  33.         }  
  34.         for(i=cnt-1;i>=0;i--)  
  35.         printf("%d ",ans[i]);  
  36.         printf("%d\n",len);//注意自己是自己的前后缀  
  37.     }  
  38.     return 0;  
 

poj 2406 Power Strings(KMP变形)

分类: 字符串   76人阅读  评论(0)  收藏  举报
Power Strings
Time Limit: 3000MS Memory Limit: 65536K
Total Submissions: 28102 Accepted: 11755

Description

Given two strings a and b we define a*b to be their concatenation. For example, if a = "abc" and b = "def" then a*b = "abcdef". If we think of concatenation as multiplication, exponentiation by a non-negative integer is defined in the normal way: a^0 = "" (the empty string) and a^(n+1) = a*(a^n).

Input

Each test case is a line of input representing s, a string of printable characters. The length of s will be at least 1 and will not exceed 1 million characters. A line containing a period follows the last test case.

Output

For each s you should print the largest n such that s = a^n for some string a.

Sample Input

abcd
aaaa
ababab
.

Sample Output

1
4
3

Hint

This problem has huge input, use scanf instead of cin to avoid time limit exceed.

Source

题意

给你一个字符串。问你这个字符串最多可以由一个子串重复多少次得到。

思路:

和大白(刘汝佳 训练指南)类似。先获取失配数组。然后匹配文本尾。len-f[i]就为循环节长度。

详细见代码:

[cpp]  view plain copy
  1. #include <iostream>  
  2. #include<stdio.h>  
  3. #include<string.h>  
  4. using namespace std;  
  5. const int maxn=1000100;  
  6. int f[maxn];  
  7. char txt[maxn];  
  8. void getf(char *p)  
  9. {  
  10.     int i,j,m=strlen(p);  
  11.     f[0]=f[1]=0;  
  12.     for(i=1;i<m;i++)  
  13.     {  
  14.         j=f[i];  
  15.         while(j&&p[i]!=p[j])  
  16.             j=f[j];  
  17.         f[i+1]=p[i]==p[j]?j+1:0;  
  18.     }  
  19. }  
  20. int main()  
  21. {  
  22.     int len,i,ans,t;  
  23.   
  24.     while(~scanf("%s",txt))  
  25.     {  
  26.         if(txt[0]=='.')  
  27.             break;  
  28.         getf(txt);  
  29.         len=strlen(txt);  
  30.         i=len;  
  31.         ans=1;  
  32.         while(f[i])  
  33.         {  
  34.             t=len-f[i];  
  35.             if(len%t==0&&len/t>ans)  
  36.                ans=len/t;  
  37.             i=f[i];  
  38.         }  
  39.         printf("%d\n",ans);  
  40.     }  
  41.     return 0;  
  42. }  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值