uva11475

这个题叭。。。

就是求如何用最少的字母组成回文字符串,然后输出这个字符串。

hash。。。。

先按倒序求出各子串的哈希值,然后再正着算子串的哈希值,直到找到哈希值相同的,找到最长的回文串。。。

举例子好了。。

abcdc,先依次求出c,cdc,cdcb,cdcba的哈希值。。然后求abcdc的哈希值。。再去掉a,求出bcdc的哈希值,再求出cdc的哈希值。。然后这时候刚刚算过的哈希值里有这个诶。。

然后就是处理输出就好了。

#include <iostream>
#include <cstring>
#include <string.h>
#include <cstdio>
#include <algorithm>
using namespace std;
const unsigned long long b=100000007;
const int maxn=100005;
unsigned long long hash1[maxn],hash2[maxn],hash3,temp;
int main()
{
    int n,len;
    char str[maxn];
    hash1[1]=1;
    for(int i=2;i<maxn;i++)
        hash1[i]=hash1[i-1]*b;
    while(scanf("%s",str+1)!=EOF)
    {
        len=strlen(str+1);
        hash2[0]=0;
        for(int i=len;i>0;i--)
            hash2[len-i+1]=hash2[len-i]*b+str[i];
        temp=0;
        for(int i=1;i<=len;i++)
            temp=temp*b+str[i];
        n=len;
        while(n>0&&temp!=hash2[n])
        {
            temp-=hash1[n]*str[len-n+1];
            n--;
        }
        for(int i=1;i<=len-n;i++)
            printf("%c",str[i]);
        for(int i=len;i>0;i--)
            printf("%c",str[i]);
        printf("\n");
    }

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值