跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2432. Ilya and Queries

    ID: 2438 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 2 上传者: 标签>动态规划模拟编程与模拟基础难度共享题库Codeforces英文题面题目来源题面语言

Ilya and Queries

题目描述

B. Ilya and Queries
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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... sn (n is the length of the string), consisting only of characters "." and "#" and m queries. Each query is described by a pair of integers li,ri (1≤li<rin). The answer to the query li,ri is the number of such integers i (lii<ri), that si=si+1.

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

Input

The first line contains string s of length n (2≤n≤105). It is guaranteed that the given string only consists of characters "." and "#".

The next line contains integer m (1≤m≤105) − the number of queries. Each of the next m lines contains the description of the corresponding query. The i-th line contains integers li,ri (1≤li<rin).

Output

Print m integers − the answers to the queries in the order in which they are given in the input.

Examples
Input
......
4
3 4
2 3
1 6
2 6
Output
1
1
5
4
Input
#..###
5
1 3
5 6
1 5
3 6
3 4
Output
1
1
2
2
0

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2062 题。保留原作者与原赛事署名。