POJ 2406(后缀数组/KMP)

该博客主要介绍了如何应用KMP算法解决POJ 2406竞赛题目,该题目的目标是找到字符串的最小循环节。作者提供了使用KMP算法的解决方案,并指出后缀数组也是可行的方法之一。
摘要由CSDN通过智能技术生成

(http://acm.hust.edu.cn/vjudge/contest/view.action?cid=105595#problem/G)
题意:寻找最小循环节
解法:后缀数组,KMP都能做,比较懒,只写了KMP的版本。。。

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <queue>
//#include <tr1/unordered_set>
//#include <tr1/unordered_map>
#include <bitset>
//#pragma comment(linker, "/STACK:1024000000,1024000000")

using namespace std;

#define lson l, m, rt<<1
#define rson m+1, r, rt<<1|1
#define inf 1e9
#define debug(a) cout << #a" = " << (a) << endl;
#define debugarry(a, n) for (int i = 0; i < (n); i++) { cout << #a"[" << i << "] = " << (a)[i] << endl; }
#define clr(x, y) memset(x, y, sizeof x)
#define ll long long
#define ull unsigned long long
#define FOR(i,a,b) \
    for(i=a;a<b?i<=b:i>=b;a<b?i++:i--)

const int maxn =  1000000+100;

char s[maxn];
int f[maxn],len;

void getFail()
{
    char *P=s;
    int m=len;
    f[0]=f[1]=0;
    for(int i=1;i<m;i++)
    {
        int j=f[i];
        while(j&&P[i]!=P[j]) j=f[j];
        f[i+1] = P[i]==P[j]?j+1:0;
    }
}

int main()
{
    //freopen("input.txt","r",stdin);
    while(~scanf("%s",s))
    {
        if(strcmp(s,".")==0) break;
        len=strlen(s);
        getFail();
        int ans=1;
        int j = f[len];
        while(j)
        {
            if( len%(len-j)==0 )
                ans = max(ans , len/(len-j) );
//          debug(j);
            j=f[j];
        }
        printf("%d\n",ans);
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值