CF313B.Ilya and Queries

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Ilya the Lion wants to help all his friends with passing exams. They need to solve the following problem to pass the IT exam.

You've got string s=s1s2... sns=s_{1}s_{2}...\ s_{n} ( nn is the length of the string), consisting only of characters "." and "#" and mm queries. Each query is described by a pair of integers li,ril_{i},r_{i} (1<=l_{i}<r_{i}<=n) . The answer to the query li,ril_{i},r_{i} is the number of such integers ii (l_{i}<=i<r_{i}) , that si=si+1s_{i}=s_{i+1} .

Ilya the Lion wants to help his friends but is there anyone to help him? Help Ilya, solve the problem.

输入格式

The first line contains string ss of length nn (2<=n<=105)(2<=n<=10^{5}) . It is guaranteed that the given string only consists of characters "." and "#".

The next line contains integer mm (1<=m<=105)(1<=m<=10^{5}) — the number of queries. Each of the next mm lines contains the description of the corresponding query. The ii -th line contains integers li,ril_{i},r_{i} (1<=l_{i}<r_{i}<=n) .

输出格式

Print mm integers — the answers to the queries in the order in which they are given in the input.

输入输出样例

  • 输入#1

    ......
    4
    3 4
    2 3
    1 6
    2 6
    

    输出#1

    1
    1
    5
    4
    
  • 输入#2

    #..###
    5
    1 3
    5 6
    1 5
    3 6
    3 4
    

    输出#2

    1
    1
    2
    2
    0
    
首页