码迷,mamicode.com
首页 > 其他好文 > 详细

[Usaco2006 Dec] Milk Patterns 产奶的模式 - 后缀自动机

时间:2020-07-11 13:17:03      阅读:49      评论:0      收藏:0      [点我收藏+]

标签:mem   ons   eof   its   基于   子串   cal   lse   要求   

Description

给定一个数字串 \(S\),求出现了 \(k\) 次的子串的最大长度。

Solution

考虑基于 std::map 的 SAM

出现 \(k\) 次的条件就是要求 \(endpos\) 集合的大小 \(\ge k\)

于是我们在满足这个条件的所有节点的 \(len\) 中取最大即可

#include <bits/stdc++.h>
using namespace std;
const int N = 200005;
struct SAM {
    int len[N], fa[N], ind, last;
    map<int,int> ch[N];
    int t[N], a[N], cnt[N], f[N];
    SAM() { ind = last = 1; }
    inline void extend(int id) {
        int cur = (++ ind), p;
        len[cur] = len[last] + 1;
        cnt[cur] = 1;
        for (p = last; p && !ch[p][id]; p = fa[p]) ch[p][id] = cur;
        if (!p) fa[cur] = 1;
        else {
            int q = ch[p][id];
            if (len[q] == len[p] + 1) fa[cur] = q;
            else {
                int tmp = (++ ind);
                len[tmp] = len[p] + 1;
                ch[tmp] = ch[q];
                fa[tmp] = fa[q];
                for (; p && ch[p][id] == q; p = fa[p]) ch[p][id] = tmp;
                fa[cur] = fa[q] = tmp;
            }
        }
        last = cur;
    }
    void calcEndpos() {
        memset(t, 0, sizeof t);
        for(int i=1; i<=ind; i++) t[len[i]]++;
        for(int i=1; i<=ind; i++) t[i]+=t[i-1];
        for(int i=1; i<=ind; i++) a[t[len[i]]--]=i;
        for(int i=ind; i>=1; --i) cnt[fa[a[i]]]+=cnt[a[i]];
        cnt[1] = 0;
    }
    int solve(int k)
    {
        int ans=0;
        for(int i=1;i<=ind;i++)
        {
            if(cnt[i]>=k) ans=max(ans,len[i]);
        }
        return ans;
    }
} sam;

int main() {
    ios::sync_with_stdio(false);
    int n,k,t;
    cin>>n>>k;
    for(int i=1;i<=n;i++)
    {
        cin>>t;
        sam.extend(t);
    }
    sam.calcEndpos();
    cout<<sam.solve(k)<<endl;
}


[Usaco2006 Dec] Milk Patterns 产奶的模式 - 后缀自动机

标签:mem   ons   eof   its   基于   子串   cal   lse   要求   

原文地址:https://www.cnblogs.com/mollnn/p/13282944.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!