[JSOI2013] 快乐的 JYY - 回文自动机,DFS

#include <bits/stdc++.h>
#define Sigma 30
#define MAXN 500010
#define int long long
using namespace std ;
int n, m, ans ; char s[MAXN], t[MAXN] ;
struct PAM{
    int rt0, rt1, last, sz, f[MAXN], ch[MAXN][Sigma], fail[MAXN], len[MAXN] ;
    void Init(){
        sz = -1, rt0 = ++ sz, rt1 = ++ sz ;
        fail[rt0] = fail[rt1] = rt1, len[rt0] = 0, len[rt1] = -1, last = rt0 ;
    }
    PAM(){Init();}
    void Insert(int x, int p, char *s){
        int u = last ;
        while (s[p] != s[p - len[u] - 1]) u = fail[u] ;
        if (!ch[u][x]){
            int newq = ++ sz, fa = fail[u] ;
            while (s[p] != s[p - len[fa] - 1]) fa = fail[fa] ;
            fail[newq] = ch[fa][x], ch[u][x] = newq, len[newq] = len[u] + 2 ;
        }
        last = ch[u][x], f[last] ++ ;
    }
    void Solve() {
        for(int i=sz;i;--i) f[fail[i]] += f[i];
    }
}p,q;
void dfs(int x,int y) {
    if(x+y>2) ans += p.f[x]*q.f[y];
    for(int i=1;i<=26;i++)
        if(p.ch[x][i] && q.ch[y][i]) dfs(p.ch[x][i],q.ch[y][i]);
}
signed main() {
    ios::sync_with_stdio(false);
    cin>>s+1>>t+1;
    n=strlen(s+1);
    m=strlen(t+1);
    for(int i=1;i<=n;i++) p.Insert(s[i]-'A'+1,i,s);
    for(int i=1;i<=m;i++) q.Insert(t[i]-'A'+1,i,t);
    p.Solve(); q.Solve();
    dfs(1,1);dfs(0,0);
    cout<<ans<<endl;
}

相关文章:

  • 2021-08-22
  • 2022-02-10
  • 2022-12-23
  • 2021-04-27
  • 2022-02-07
  • 2022-12-23
  • 2022-12-23
  • 2021-12-13
猜你喜欢
  • 2021-08-30
  • 2022-01-10
  • 2022-12-23
  • 2021-05-22
  • 2021-12-29
  • 2022-02-15
  • 2021-06-14
相关资源
相似解决方案