A12902 | Distinct Characters Queries
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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:
- $1~ pos~ c$ ( $1 \le pos \le |s|$ , $c$ is lowercase Latin letter): replace $s_{pos}$ with $c$ (set $s_{pos} := c$ );
- $2~ l~ r$ ( $1 \le l \le r \le |s|$ ): calculate the number of distinct characters in the substring $s[l; r]$ .
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:
- $1~ pos~ c$ ( $1 \le pos \le |s|$ , $c$ is lowercase Latin letter): replace $s_{pos}$ with $c$ (set $s_{pos} := c$ );
- $2~ l~ r$ ( $1 \le l \le r \le |s|$ ): calculate the number of distinct characters in the substring $s[l; r]$ .
输入格式
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.
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.
输入输出样例
输入 #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
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted