CF245H.Queries for Number of Palindromes

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You've got a string s=s1s2... sss=s_{1}s_{2}...\ s_{|s|} of length s|s| , consisting of lowercase English letters. There also are qq queries, each query is described by two integers li,ril_{i},r_{i} (1<=li<=ri<=s)(1<=l_{i}<=r_{i}<=|s|) . The answer to the query is the number of substrings of string s[li... ri]s[l_{i}...\ r_{i}] , which are palindromes.

String s[l... r]=slsl+1... srs[l...\ r]=s_{l}s_{l+1}...\ s_{r} (1<=l<=r<=s)(1<=l<=r<=|s|) is a substring of string s=s1s2... sss=s_{1}s_{2}...\ s_{|s|} .

String tt is called a palindrome, if it reads the same from left to right and from right to left. Formally, if t=t1t2... tt=tttt1... t1t=t_{1}t_{2}...\ t_{|t|}=t_{|t|}t_{|t|-1}...\ t_{1} .

输入格式

The first line contains string ss (1<=s<=5000)(1<=|s|<=5000) . The second line contains a single integer qq (1<=q<=106)(1<=q<=10^{6}) — the number of queries. Next qq lines contain the queries. The ii -th of these lines contains two space-separated integers li,ril_{i},r_{i} (1<=li<=ri<=s)(1<=l_{i}<=r_{i}<=|s|) — the description of the ii -th query.

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

输出格式

Print qq 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.

输入输出样例

  • 输入#1

    caaaba
    5
    1 1
    1 4
    2 3
    4 6
    4 5
    

    输出#1

    1
    7
    3
    4
    2
    

说明/提示

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

首页