SPOJ Number of Palindromes(回文树)



Time Limit: 100MS Memory Limit: 1572864KB 64bit IO Format: %lld & %llu

 Status

Description

Each palindrome can be always created from the other palindromes, if a single character is also a palindrome. For example, the string "malayalam" can be created by some ways:


* malayalam = m + ala + y + ala + m
* malayalam = m + a + l + aya + l + a + m

We want to take the value of function NumPal(s) which is the number of different palindromes that can be created using the string S by the above method. If the same palindrome occurs more than once then all of them should be counted separately.


Input

The string S.


Output

The value of function NumPal(s).


Limitations

0 < |s| <= 1000


Example


Input:

malayalam

Output:

15

Hint

Added by:The quick brown fox jumps over the lazy dog
Date:2010-10-18
Time limit:0.100s-0.170s
Source limit:50000B
Memory limit:1536MB
Cluster:Cube (Intel G860)
Languages:All
Resource:Udit Agarwal

回文树:
回文树是一种处理回文串的强大工具
#include <iostream>
#include <string.h>
#include <stdlib.h>
#include <algorithm>
#include <math.h>
#include <stdio.h>

using namespace std;
#define MAX 1005
struct Node
{
    int next[26];
    int len;
    int sufflink;
    int num;
}tree[MAX];
char s[MAX];

int num;
int suff;
bool addLetter(int pos)
{
    int cur=suff,curlen=0;
    int let=s[pos]-'a';

    while(1)
    {
        curlen=tree[cur].len;
        if(pos-1-curlen>=0&&s[pos-1-curlen]==s[pos])
            break;
        cur=tree[cur].sufflink;
    }
    if(tree[cur].next[let])
    {
        suff=tree[cur].next[let];
        return false;
    }
    num++;
    suff=num;
    tree[num].len=tree[cur].len+2;
    tree[cur].next[let]=num;
    if(tree[num].len==1)
    {
        tree[num].sufflink=2;
        tree[num].num=1;
        return true;
    }
    while(1)
    {
        cur=tree[cur].sufflink;
        curlen=tree[cur].len;
        if(pos-1-curlen>=0&&s[pos-1-curlen]==s[pos])
        {
            tree[num].sufflink=tree[cur].next[let];
            break;
        }
    }
    tree[num].num=1+tree[tree[num].sufflink].num;
    return true;

}
void initTree()
{
    num=2;suff=2;
    tree[1].len=-1;tree[1].sufflink=1;
    tree[2].len=0;tree[2].sufflink=1;
}
int main()
{
    scanf("%s",s);
    int len=strlen(s);
    initTree();
    long long int ans=0;
    for(int i=0;i<len;i++)
    {
         addLetter(i);
         ans+=tree[suff].num;
    }
    printf("%d\n",ans);
    return 0;
}


Time Limit: 100MS Memory Limit: 1572864KB 64bit IO Format: %lld & %llu

 Status

Description

Each palindrome can be always created from the other palindromes, if a single character is also a palindrome. For example, the string "malayalam" can be created by some ways:


* malayalam = m + ala + y + ala + m
* malayalam = m + a + l + aya + l + a + m

We want to take the value of function NumPal(s) which is the number of different palindromes that can be created using the string S by the above method. If the same palindrome occurs more than once then all of them should be counted separately.


Input

The string S.


Output

The value of function NumPal(s).


Limitations

0 < |s| <= 1000


Example


Input:

malayalam

Output:

15

Hint

Added by:The quick brown fox jumps over the lazy dog
Date:2010-10-18
Time limit:0.100s-0.170s
Source limit:50000B
Memory limit:1536MB
Cluster:Cube (Intel G860)
Languages:All
Resource:Udit Agarwal
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值