Codeforces Round 590 (Div. 3) |
---|
Finished |
You are given a string $$$s$$$ consisting of lowercase Latin letters and $$$q$$$ queries for this string.
Recall that the substring $$$s[l; r]$$$ of the string $$$s$$$ is the string $$$s_l s_{l + 1} \dots s_r$$$. For example, the substrings of "codeforces" are "code", "force", "f", "for", but not "coder" and "top".
There are two types of queries:
The first line of the input contains one string $$$s$$$ consisting of no more than $$$10^5$$$ lowercase Latin letters.
The second line of the input contains one integer $$$q$$$ ($$$1 \le q \le 10^5$$$) — the number of queries.
The next $$$q$$$ lines contain queries, one per line. Each query is given in the format described in the problem statement. It is guaranteed that there is at least one query of the second type.
For each query of the second type print the answer for it — the number of distinct characters in the required substring in this query.
abacaba 5 2 1 4 1 4 b 1 5 b 2 4 6 2 1 7
3 1 2
dfcbbcfeeedbaea 15 1 6 e 1 4 b 2 6 14 1 7 b 1 12 c 2 6 8 2 1 6 1 7 c 1 2 f 1 10 a 2 7 9 1 10 a 1 14 b 1 1 f 2 1 11
5 2 5 2 6
Name |
---|