POJ2406 Power Strings 后缀数组(DC3算法)或KMP或暴搜(瞎写)

方法一:暴搜。。(188ms)

自己瞎写的。。竟然过了??!!!

附上AC代码:

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define ll long long
typedef pairpp;
#define mkp make_pair
#define pb push_back
const int INF=0x3f3f3f3f;
const ll MOD=1e9+(ll)7;

const int MAX=1e6+5;
char s[MAX];
int n;
int main()
{
    while(scanf("%s",s)==1)
    {
        if(strcmp(s,".")==0)
            break;
        n=strlen(s);
        int ans,l;
        for(l=1;l

方法二:后缀数组(2922ms)

果然我还是太菜了。。对各个数组的理解也不够。。

附上参考博客Orz:https://blog.csdn.net/superxtong/article/details/52082133

主要就是那几个判断条件,我还是把后缀树画出来了,写了一些理解,如下图:POJ2406 Power Strings 后缀数组(DC3算法)或KMP或暴搜(瞎写)_第1张图片

这道题用倍增会TLE,只好用DC3了(第一次用...),正好记录下来当模板了hiahiahia

附上AC代码:

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define ll long long
typedef pairpp;
#define mkp make_pair
#define pb push_back
const int INF=0x3f3f3f3f;
const ll MOD=1e9+(ll)7;

const int MAX=1e6+5;
#define F(x) ((x)/3+((x)%3==1?0:tb))
#define G(x) ((x)=0;i--) b[--wss[wv[i]]]=a[i];
}
void dc3(int *r,int *sa,int n,int m)
{
    int i,j,*rn=r+n;
    int *san=sa+n,ta=0,tb=(n+1)/3,tbc=0,p;
    r[n]=r[n+1]=0;
    for(i=0;i

方法二:KMP(157ms)

这道题说实话我真没想到用KMP。。先附上大佬博客Orz:

https://blog.csdn.net/wxw15617488718/article/details/77494159

其中这段总结的很好:KMP最小循环节、循环周期:

定理:假设S的长度为len,则S存在最小循环节,循环节的长度L为len-next[len](注意是len),子串为S[0…len-next[len]-1]。(next数组存的是最长相等的前缀和后缀字串长度)

(1)如果len可以被len - next[len]整除,则表明字符串S可以完全由循环节循环组成,循环周期T=len/L。

(2)如果不能,说明还需要再添加几个字母才能补全。需要补的个数是循环个数L-len%L=L-(len-L)%L=L-next[len]%L,L=len-next[len]。

附上AC代码:

#include
#include
#include
#include
using namespace std;
const int MAX=1e6+5;
char s[MAX];
int len;
int nex[MAX];
void get_nex()
{
    memset(nex,0,sizeof(nex));
    int j=0,k=-1;
    nex[0]=-1;
    while(j

 

你可能感兴趣的:(#,字符串)