hdu 3294 Girls' research【manacher】

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3294

代码:

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <fstream>
#include <algorithm>
#include <cmath>
#include <queue>
#include <stack>
#include <vector>
#include <map>
#include <set>
#include <iomanip>

using namespace std;


const int N = 1100550;

int p[2 * N];//记录回文半径
char str0[N];//原始串
char str[2 * N];//转换后的串

void init()
{
    int i, l;
    str[0] = '@'; str[1] = '#';
    for (i = 0, l = 2; str0[i]; i++, l += 2)
    {
        str[l] = str0[i];
        str[l + 1] = '#';
    }
    str[l] = 0;
}

int solve()
{
    int ans = 0;
    int i, mx, id;
    mx = 0;//mx即为当前计算回文串最右边字符的最大值  
    for (i = 1; str[i]; i++)
    {
        if (mx>i)
            p[i] = p[2 * id - i]>(mx - i) ? (mx - i) : p[2 * id - i];
        else
            p[i] = 1;//如果i>=mx,要从头开始匹配  
        while (str[i + p[i]] == str[i - p[i]])
            p[i]++;
        if (i + p[i]>mx)//若新计算的回文串右端点位置大于mx,要更新po和mx的值
        {
            mx = i + p[i];
            id = i;
        }
        ans = max(ans, p[i]);
    }
    return ans - 1;
}

char s1[N];

int main()
{
    while (scanf("%s %s", s1,str0) != EOF)
    {
        int tmp = s1[0] - 'a';
        int len = strlen(str0);
        for (int i = 0;i < len;i++)
            str0[i] = 'a' + ((str0[i] - 'a') - tmp + 26) % 26;

        //puts(str0);

        init();
        int ans = solve();
        if (ans < 2)
        {
            puts("No solution!");
            continue;
        }

        int pos = 0;
        for (int i = 1;str[i];i++)
        {
            if (p[i] - 1 == ans)
            {
                pos = i;
                break;
            }
        }
        int pos1 = (pos - ans + 1) / 2 - 1;
        int pos2 = (pos + ans - 1) / 2 - 1;
        printf("%d %d\n", pos1, pos2);
        for (int i = pos1;i <= pos2;i++)
            printf("%c", str0[i]);
        printf("\n");

    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值