CF1234D.Distinct Characters Queries

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given a string ss consisting of lowercase Latin letters and qq queries for this string.

Recall that the substring s[l;r]s[l; r] of the string ss is the string slsl+1srs_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:

  • 1 pos c1~ pos~ c ( 1poss1 \le pos \le |s| , cc is lowercase Latin letter): replace sposs_{pos} with cc (set spos:=cs_{pos} := c );
  • 2 l r2~ l~ r ( 1lrs1 \le l \le r \le |s| ): calculate the number of distinct characters in the substring s[l;r]s[l; r] .

输入格式

The first line of the input contains one string ss consisting of no more than 10510^5 lowercase Latin letters.

The second line of the input contains one integer qq ( 1q1051 \le q \le 10^5 ) — the number of queries.

The next qq 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.

输入输出样例

  • 输入#1

    abacaba
    5
    2 1 4
    1 4 b
    1 5 b
    2 4 6
    2 1 7
    

    输出#1

    3
    1
    2
    
  • 输入#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
    

    输出#2

    5
    2
    5
    2
    6
    
首页