Problem Statement
You are give an initial string of length consisting of only the letters a
and b
.
You are also given queries, in order, each containing two integers and .
For each query, determine the number of ab
subsequences in the substring of from to .
Input Format
Your first line will contain and . Your next line will contain . Your next lines will contain two integers each, representing and for that query.
Output Format
For each each query, you should output one line containing a single integer representing the number of ab
subsequences from that query's substring.
Constraints
Subtask 1
Subtask 2
Sample Cases
Input 1
10 3
abbabbbaab
1 2
1 5
0 7
Output 1
0
2
8
Input 2
10 3
bbababbaba
0 4
5 9
0 9
Output 2
1
1
8
Input 2
10 1
aaaaabbbbb
0 9
Output 2
25
Comments