【洛谷P1659】啦啦队排练

题目大意:给定一个长度为 N 的字符串,求前 K 个长度为奇数的回文子串的长度的乘积是多少。

题解:利用回文自动机,将所有长度的回文串和个数求出来,按照长度排序进行模拟即可。

代码如下

// luogu-judger-enable-o2
#include <bits/stdc++.h>
using namespace std;
const int maxn=1e6+10;
const int mod=19930726;
typedef long long LL;
LL fpow(LL a,LL b){
    LL ret=1%mod;
    for(;b;b>>=1,a=a*a%mod)if(b&1)ret=ret*a%mod;
    return ret;
}

char s[maxn];
int n; LL k;
struct node{int len,sz;}t[maxn];
struct PAM{
    int lst,tot,trie[maxn][26],fail[maxn],len[maxn],sz[maxn];
    PAM(){tot=1,fail[0]=fail[1]=1,len[1]=-1;}
    void extend(int c,int i){
        int p=lst;
        while(s[i-len[p]-1]!=s[i])p=fail[p];
        if(!trie[p][c]){
            int now=++tot,k=fail[p];
            while(s[i-len[k]-1]!=s[i])k=fail[k];
            fail[now]=trie[k][c],len[now]=len[p]+2;
            trie[p][c]=now;
        }
        lst=trie[p][c],++sz[lst];
    }
    void solve(){
        for(int i=tot;i>=2;i--){
            t[i].sz=sz[i],t[i].len=len[i];
            sz[fail[i]]+=sz[i];
        }
        sort(t+2,t+tot+1,[](const node &x,const node &y){
            return x.len>y.len;
        });
    }
}pam;

int main(){
    scanf("%d%lld%s",&n,&k,s+1);
    for(int i=1;i<=n;i++)pam.extend(s[i]-'a',i);
    pam.solve();
    int now=2,r=pam.tot,ans=1;
    while(k){
        if(now>r)return puts("-1"),0;
        if(t[now].len%2==0){++now;continue;}
        if(t[now].sz<=k)ans=ans*fpow(t[now].len,t[now].sz)%mod,k-=t[now].sz;
        else ans=ans*fpow(t[now].len,k)%mod,k=0;
        ++now;
    }
    printf("%d\n",ans);
    return 0;
}

转载于:https://www.cnblogs.com/wzj-xhjbk/p/10788459.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值