← Home
write a go solution for Description:
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_ls_l+1...s_r. For example, the substrings of "codeforces" are "code", "force", "f", "for", but not "coder" and "top".

There are two types of queries:

- 1~pos~c (1<=pos<=|s|, c is lowercase Latin letter): replace s_pos with c (set s_pos:=c);
- 2~l~r (1<=l<=r<=|s|): calculate the number of distinct characters in the substring s[l;r].

Input Format:
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<=q<=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.

Output Format:
For each query of the second type print the answer for it — the number of distinct characters in the required substring in this query.

Note:
None. Output only the code with no comments, explanation, or additional text.