[SPOJ-NSUBSTR]Substrings

Posted 租酥雨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[SPOJ-NSUBSTR]Substrings相关的知识,希望对你有一定的参考价值。

vjudge

题意

求长度为\(i\)的子串在原串中出现次数的最大值。

sol

还是直接求\(endpos\)集合大小。
最后做一遍后缀最大值,因为很明显答案单调不增。

code

#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
const int N = 5e5+5;
int n,last=1,tot=1,tr[N][26],fa[N],len[N],sz[N],t[N],a[N],ans[N];
char s[N];
void extend(int c)
{
    int v=last,u=++tot;last=u;
    len[u]=len[v]+1;
    while (v&&!tr[v][c]) tr[v][c]=u,v=fa[v];
    if (!v) fa[u]=1;
    else
    {
        int x=tr[v][c];
        if (len[x]==len[v]+1) fa[u]=x;
        else
        {
            int y=++tot;
            memcpy(tr[y],tr[x],sizeof(tr[y]));
            fa[y]=fa[x];fa[x]=fa[u]=y;len[y]=len[v]+1;
            while (v&&tr[v][c]==x) tr[v][c]=y,v=fa[v];
        }
    }
    sz[u]=1;
}
int main()
{
    scanf("%s",s+1);n=strlen(s+1);
    for (int i=1;i<=n;++i) extend(s[i]-'a');
    for (int i=1;i<=tot;++i) ++t[len[i]];
    for (int i=1;i<=tot;++i) t[i]+=t[i-1];
    for (int i=1;i<=tot;++i) a[t[len[i]]--]=i;
    for (int i=tot;i;--i)
    {
        sz[fa[a[i]]]+=sz[a[i]];
        ans[len[a[i]]]=max(ans[len[a[i]]],sz[a[i]]);
    }
    for (int i=n;i;--i) ans[i]=max(ans[i],ans[i+1]);
    for (int i=1;i<=n;++i) printf("%d\n",ans[i]);
    return 0;
}

以上是关于[SPOJ-NSUBSTR]Substrings的主要内容,如果未能解决你的问题,请参考以下文章

spoj8222 Substrings

[SPOJ8222]Substrings

LeetCode Count Binary Substrings

467. Unique Substrings in Wraparound String

Spoj-DISUBSTR - Distinct Substrings~New Distinct Substrings SPOJ - SUBST1~(后缀数组求解子串个数)

Substrings--poj1226(字符串)