马拉车算法求回文子串个数

题目:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=6012

分析:

给定两个字符串s,t 
结论:s,t不相同的第一个字符下标为l,最后一个字符下标为r
         如果l==r,那么不存在解
        如果l

所以本题只需要考虑三种情况:
    1.两个串相等:求s的回文子串
    2.l==r,无解
    3.l

Ac code:

#include
using namespace std;
typedef long long ll;
const int maxn=5e6+5;
int p[maxn];
ll ans;
char s[maxn];
char snew[maxn];
int init(){
    int len=strlen(s),j=2;
    snew[0]='$',snew[1]='#';
    for(int i=0;ii)p[i]=min(p[2*id-i],mx-i);
        else p[i]=1;
        while(snew[i-p[i]]==snew[i+p[i]])///i-p[i]可能会越界,用string会段错误,char[]可以
            p[i]++;
        if(mx=0;--i)
            if(s1[i]!=s2[i])
            {
                r=i;
                break;
            }
        if(l==r)
            printf("0\n");
        else if(l>r){
            strcpy(s,s1);
            printf("%lld\n",manacher());
        }
        else if(l=0&&j

 

最后贴个manacher求最长回文子串的板子:

#include 
#include 
#include 
using namespace std;
string Manacher(string s)
{
    // Insert '#'
    string t = "$#";
    for (int i = 0; i < s.size(); ++i)
    {
        t += s[i];
        t += "#";
    }
    // Process t
    vector p(t.size(), 0);///数组记得开2倍以上
    int mx = 0, id = 0, resLen = 0, resCenter = 0;
    for (int i = 1; i < t.size(); ++i)  ///从1开始
    {
        p[i] = mx > i ? min(p[2 * id - i], mx - i) : 1;
        while (t[i + p[i]] == t[i - p[i]]) ++p[i];
        if (mx < i + p[i])
        {
            mx = i + p[i];
            id = i;
        }
        if (resLen < p[i])  ///找最大的p[i]
        {
            resLen = p[i];///最长回文子串的半径
            resCenter = i;///最长回文子串的中心
        }
    }
    ///最长回文子串长度len=resLen - 1;
    ///左端点(resCenter - resLen) / 2
    return s.substr((resCenter - resLen) / 2, resLen - 1);
}
int main()
{
    int n;
    cin>>n;
    string k;
    while(n--)
    {
        cin>>k;
        cout<

 

你可能感兴趣的:(字符串)