No Time to Paint
Bessie has recently received a painting set, and she wants to paint the long fence at one end of her pasture. The fence consists of n consecutive 1-meter segments. Bessie has 26 different colors available, which she labels with the letters 'A' through 'Z' in increasing order of darkness ('A' is a very light color, and 'Z' is very dark). She can therefore describe the desired color she wants to paint each fence segment as a length-n string where each character is a letter.
Initially, all fence segments are uncolored. Bessie can color any contiguous range of segments with a single color in a single brush stroke as long as she never paints a lighter color over a darker color (she can only paint darker colors over lighter colors).
For example, an initially uncolored segment of length four can be colored as follows:
.... -> BBB. -> BBLL -> BQQL
Running short on time, Bessie thinks she may need to leave some consecutive range of fence segments unpainted! Currently, she is considering q candidate ranges, each described by by two integers (a, b) with 1 ≤ a ≤ b ≤ n giving the indices of endpoints of the range a..b of segments to be left unpainted.
For each candidate range, what is the minimum number of strokes needed to paint every fence segment outside those in the range with its desired color while leaving all fence segments inside the range uncolored? Note that Bessie does not actually do any painting during this process, so the answers for each candidate range are independent.
Input
The first line contains n (1 ≤ n ≤ 10^5
) and q (1 ≤ q ≤ 10^5
).
The next line contains a string of length n characters representing the desired color for each fence segment.
The next q lines each contain two integers a and b representing a candidate range to possibly leave unpainted.
Output
For each of the q candidates, output the answer on a new line.
Example
In this example, excluding the sub-range corresponding to the desired pattern BAAB requires four strokes to paint while excluding ABBA requires only three.
.... -> AA.. -> ABBB -> ABCB