回文自动机 + DFS --- The 2014 ACM-ICPC Asia Xi’an Regional Contest Problem G.The Problem to Slow Down You...

The Problem to Slow Down You 

Problem's Link:  http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=141572


 

Mean: 

给你两个字符串,求这两个字符串相同回文串的匹配对数。

analyse:

每个字符串建一棵回文树,分别从0结点和1结点两棵树一起往下dfs,对于同一条路径上的结点,一定是相同的回文,然后两个的数量相乘加到answer中。

Time complexity: O(N)

 

Source code: 

/*
* this code is made by crazyacking
* Verdict: Accepted
* Submission Date: 2015-08-22-13.43
* Time: 0MS
* Memory: 137KB
*/
#include <queue>
#include <cstdio>
#include <set>
#include <string>
#include <stack>
#include <cmath>
#include <climits>
#include <map>
#include <cstdlib>
#include <iostream>
#include <vector>
#include <algorithm>
#include <cstring>
#define  LL long long
#define  ULL unsigned long long
using namespace std;

const int MAXN = 200050 ;
const int N = 26;
LL ans;
char s [ MAXN ];
struct Palindromic_Tree
{
      int next [ MAXN ][N ];
      int fail [ MAXN ];
      int cnt [ MAXN ];
      int num [ MAXN ];
      int len [ MAXN ];
      int S [ MAXN ];
      int last;
      int n ;
      int p ;
      int newnode( int l)
      {
            for( int i = 0 ; i < N ; ++ i) next [p ][ i ] = 0 ;
            cnt [p ] = 0 ;
            num [p ] = 0 ;
            len [p ] = l ;
            return p ++ ;
      }
      void init()
      {
           p = 0 ;
            newnode( 0) ;
            newnode( - 1) ;
            last = 0 ;
           n = 0 ;
           S [n ] = - 1 ;
            fail [ 0 ] = 1 ;
      }
      int get_fail( int x)
      {
            while(S [n - len [ x ] - 1 ] != S [n ]) x = fail [ x ] ;
            return x ;
      }
      void add( int c)
      {
            c -= 'a';
           S [ ++ n ] = c ;
            int cur = get_fail( last);
            if( ! next [ cur ][ c ])
            {
                  int now = newnode( len [ cur ] + 2);
                  fail [ now ] = next [ get_fail( fail [ cur ])][ c ] ;
                  next [ cur ][ c ] = now;
                  num [ now ] = num [ fail [ now ]] + 1 ;
            }
            last = next [ cur ][ c ];
            cnt [ last ] ++;
      }
      void count() { for( int i = p - 1 ; i >= 0 ; -- i) cnt [ fail [ i ]] += cnt [ i ]; }
} t1 , t2;

void dfs( int u , int v)
{
      for( int i = 0; i <N; ++ i)
      {
            int x = t1 . next [ u ][ i ];
            int y = t2 . next [ v ][ i ];
            if( x && y)
            {
                  ans +=( LL) t1 . cnt [ x ] * t2 . cnt [ y ];
                  dfs( x , y);
            }
      }
}

int main()
{
      int t;
      scanf( "%d" , & t);
      for( int Cas = 1; Cas <= t; ++ Cas)
      {
            t1 . init (), t2 . init();
            scanf( "%s" ,s);
            for( int i = 0; s [ i ]; ++ i) t1 . add(s [ i ]);
            scanf( "%s" ,s);
            for( int i = 0; s [ i ]; ++ i) t2 . add(s [ i ]);
            t1 . count (), t2 . count();
            ans = 0;
            dfs( 0 , 0 ), dfs( 1 , 1);
            printf( "Case #%d: %lld \n " , Cas , ans);
      }
      return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值