博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
K - Queries for Number of Palindromes(区间dp+容斥)
阅读量:5012 次
发布时间:2019-06-12

本文共 2208 字,大约阅读时间需要 7 分钟。

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.

Examples

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

Note

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

题意:求一个区间内回文串的数量

思路:要利用一个判断l~r区间的回文数组来判断这个区间是否是回文串是则为1不是则为0 然后定义一个dp数组来记录l~r区间内回文串的数量

代码:

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
const int maxn=1e5+5;typedef long long ll;using namespace std;int hw[5005][5005];int dp[5005][5005];char str[5005];int main(){ scanf("%s",str+1); int len=strlen(str+1); for(int t=1;t<=len;t++) { hw[t][t]=1; hw[t][t-1]=1; dp[t][t]=1; } for(int d=1;d<=len;d++) { for(int l=1;l+d<=len;l++) { int r=l+d; if(str[l]==str[r]&&hw[l+1][r-1]) { hw[l][r]=1; } } } for(int d=1;d<=len;d++) { for(int l=1;l+d<=len;l++) { int r=l+d; dp[l][r]=dp[l+1][r]+dp[l][r-1]-dp[l+1][r-1]+hw[l][r]; } } int q; cin>>q; int l,r; while(q--) { scanf("%d%d",&l,&r); printf("%d\n",dp[l][r]); } return 0; }

 

转载于:https://www.cnblogs.com/Staceyacm/p/11240949.html

你可能感兴趣的文章
浅谈网站推广
查看>>
Away3D基础之摄像机
查看>>
Leetcode 128. Longest Consecutive Sequence
查看>>
程序员必须知道的几个Git代码托管平台
查看>>
导电塑料入梦来
查看>>
C# 线程手册 第五章 扩展多线程应用程序 - 什么是线程池
查看>>
笔记1126ASP.NET面试题(转)
查看>>
考研路茫茫--单词情结 - HDU 2243(AC自动机+矩阵乘法)
查看>>
HTTP运行期与页面执行模型
查看>>
tableView优化方案
查看>>
近期思考(2019.07.20)
查看>>
Apache2.4使用require指令进行访问控制
查看>>
冗余关系_并查集
查看>>
做最好的自己(Be Your Personal Best)
查看>>
如何搭建github+hexo博客-转
查看>>
HW2.2
查看>>
将Windows Server 2016 打造成工作站(20161030更新)
查看>>
5大主浏览器css3和html5兼容性大比拼
查看>>
hdu-5894 hannnnah_j’s Biological Test(组合数学)
查看>>
scss常规用法
查看>>