POJ 2752Seek the Name, Seek the Fame(next数组妙用 + 既是前缀也是后缀)

题目链接

题意:求一个字符串中 前缀 和 后缀 相同的长度

分析: 对于一个字符串他自己的长度肯定是可以的。然后如果满足 前缀 和 后缀相等,那个前缀 最后一个字符 一定 和 该字符串最后一个字符相等,不然不会满足条件。

所以 找 str[len - 1] 的next数组, 对于 next[len - 1] 来看看这个位置 是不是等于最后一个字符,如果相等,那么前 next[len - 1] 一定是可以的, 然后 在判断next[ next[len - 1] ]  是不是等于 str[len - 1] .... 就是一层一层的往前找前缀,判断当前位置 是否等于 最后一个字符

 1 #include <iostream>
 2 #include <cstring>
 3 #include <algorithm>
 4 #include <cstdio>
 5 using namespace std;
 6 const int Max = 400000 + 10;
 7 char str[Max];
 8 int Next[Max];
 9 int ans[Max];
10 void getNext(int & len)
11 {
12     int i = 0, k = -1;
13     Next[0] = -1;
14     while (i < len)
15     {
16         while (k != -1 && str[k] != str[i])
17             k = Next[k];
18         Next[++i] = ++k;
19     }
20 }
21 int main()
22 {
23     while (scanf("%s", str) != EOF)
24     {
25         int len =strlen(str);
26         getNext(len);
27         int cnt = 0;
28         ans[cnt++] = len;
29         int n = len - 1;
30         while (n != -1)
31         {
32             if (Next[n] != -1 && str[ Next[n] ] == str[ len - 1])
33                 ans[cnt++] = Next[n] + 1;  // 位置 + 1
34             n = Next[n];  // 不断往前找
35         }
36         for (int i = cnt - 1; i > 0; i--)
37             printf("%d ", ans[i]);
38         printf("%d\n", ans[0]);
39     }
40     return 0;
41 }

时间: 2024-10-19 06:50:49

POJ 2752Seek the Name, Seek the Fame(next数组妙用 + 既是前缀也是后缀)的相关文章

poj 2752Seek the Name, Seek the Fame 【kmp】

Seek the Name, Seek the Fame Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 14154   Accepted: 7049 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 t

poj——2752Seek the Name, Seek the Fame(kmp专练 找出前后相同的字串)

Seek the Name, Seek the Fame Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 16035 Accepted: 8158 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 th

POJ2752 Seek the Name, Seek the Fame next数组应用

题目描述 给出一个字符串,求出存在多少子串,使得这些子串既是主串的前缀,又是主串的后缀.从小到大依次输出这些子串的长度. Sample Input ababcababababcabab aaaaa Sample Output 2 4 9 18 1 2 3 4 5 解题思路: 我们首先知道最大的那个数肯定是主串本身的长度.除去这个最大的应该是next[len].由于我们肯定是由大往小找,而题目要求输出时从小到大输出,所以考虑使用栈结构.找到了next[len]后,主串的前后都有一段长度为next[

poj--2752Seek the Name, Seek the Fame KMPnext数组的应用

题目可以装换成求以最后一个字符结尾的与某一前缀相同的所有后缀的长度:所以需要利用KMP函数中next数组的性质. 我们可以先求出前n-1个字每的next值,然后再求出第n个字母所有可能的(而不是最长的)next值. 当然我们可以先求出所有字母的next值,然后再倒着扫一遍,即next[len],next[next[len]]--...这样也可以将所有的长度求出来. 注意每一个串的本身是满足一定要求的. 代码如下: #include<iostream> #include<cstdio>

POJ 2752 Seek the Name, Seek the Fame

传送门 Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 14761   Accepted: 7407 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

KMP中next的应用 POJ 2752 Seek the Name, Seek the Fame

Seek the Name, Seek the Fame Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 19163   Accepted: 9849 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 t

POJ 2752 Seek the Name, Seek the Fame kmp失配函数next应用

点击打开链接 Seek the Name, Seek the Fame Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 12791   Accepted: 6304 Description The little cat is so famous, that many couples tramp over hill and dale to Byteland, and asked the little cat to give

poj 2752 Seek the Name, Seek the Fame KMP

对于KMP算法中next函数的应用 题意是对于一个字符串的前缀和后缀比较是否相等,再把相等的可能按字符串长度进行输出 #include <iostream> #include<stdio.h> #include<string.h> using namespace std; int len; int next[1000005]; char s[1000005]; int kmp_next() { int i=0,j=-1; next[0]=-1; while(i<l

(KMP)Seek the Name, Seek the Fame -- poj --2752

http://poj.org/problem?id=2752 Seek the Name, Seek the Fame Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 14611   Accepted: 7320 Description The little cat is so famous, that many couples tramp over hill and dale to Byteland, and asked