DP问题--求取一个字符串回文串的多少

H - H
Time Limit:5000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

Description

You've got a string s = s1s2... s|s| of length |s|, consisting of lowercase English letters. There also are q queries, each query is described by two integers li, ri (1 ≤ li ≤ ri ≤ |s|). The answer to the query is the number of substrings of string s[li... ri], which are palindromes.

String s[l... r] = slsl + 1... sr (1 ≤ l ≤ r ≤ |s|) is a substring of string s = s1s2... s|s|.

String t is called a palindrome, if it reads the same from left to right and from right to left. Formally, if t = t1t2... t|t| = t|t|t|t| - 1... t1.

Input

The first line contains string s (1 ≤ |s| ≤ 5000). The second line contains a single integer q (1 ≤ q ≤ 106) — the number of queries. Next q lines contain the queries. The i-th of these lines contains two space-separated integers li, ri (1 ≤ li ≤ ri ≤ |s|) — the description of the i-th query.

It is guaranteed that the given string consists only of lowercase English letters.

Output

Print q integers — the answers to the queries. Print the answers in the order, in which the queries are given in the input. Separate the printed numbers by whitespaces.

Sample Input

Input
caaaba
5
1 1
1 4
2 3
4 6
4 5
Output
1
7
3
4
2

Hint

Consider the fourth query in the first test case. String s[4... 6] = «aba». Its palindrome substrings are: «a», «b», «a», «aba».

这题采用的是区间DP问题,具体代码实现如下:

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define MAXN 5005
int flag[MAXN][MAXN],num[MAXN][MAXN]; 
int main(){
    char s[MAXN];
    int i,j,len,l,r,n;
    memset(flag,0,sizeof(flag));
    memset(num,0,sizeof(num));
    gets(s+1);
    len=strlen(s+1);
    for(i=1;i<=len;i++){
        flag[i][i]=1;//flag[i][i]表示i到i是不是一个回文串; 
        flag[i][i-1]=1;//这里是为了迎合后面的算法而做的准备, 明显i到i-1是倒着来了,表示的是一个空的回文串,但他也是一个回文串只要满足s[i]=s[i-1]; 
        num[i][i]=1;//每个单独字符都是一个回文串 
    }
    for(l=2;l<=len;l++)//为什么从l=2开始?因为长度为1的子串已经做了预处理,现在应该从长度为2的子串依次统计 i起的作用是规定长度 
        for(i=1,j=l;j<=len;j++,i++){//i++与j++完全迎合同一规定i长度下的回文串情况 
        flag[i][j]=flag[i+1][j-1]&&(s[i]==s[j]);
        num[i][j]=num[i][j-1]+num[i+1][j]-num[i+1][j-1]+flag[i][j];//这里便是进行区间的融合 
    }
    scanf("%d",&n);
    while(n--){
        scanf("%d%d",&r,&l);
        printf("%d\n",num[r][l]);
    }
    system("pause");
    return 0;
}


    system("pause");
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值