A11509 | Substrings in a String
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Given a string $s$ , process $q$ queries, each having one of the following forms:
- $1ic$ — Change the $i$ -th character in the string to $c$ .
- $2lry$ — Consider the substring of $s$ starting at position $l$ and ending at position $r$ . Output the number of times $y$ occurs as a substring in it.
- $1ic$ — Change the $i$ -th character in the string to $c$ .
- $2lry$ — Consider the substring of $s$ starting at position $l$ and ending at position $r$ . Output the number of times $y$ occurs as a substring in it.
输入格式
The first line of the input contains the string $s$ ( $1<=|s|<=10^{5}$ ) of lowercase English letters.
The second line contains an integer $q$ ( $1<=q<=10^{5}$ ) — the number of queries to process.
The next $q$ lines describe the queries and may have one of the following forms:
- $1ic$ ( $1<=i<=|s|$ )
- $2lry$ ( $1<=l<=r<=|s|$ )
$c$ is a lowercase English letter and $y$ is a non-empty string consisting of only lowercase English letters.
The sum of $|y|$ over all queries of second type is at most $10^{5}$ .
It is guaranteed that there is at least one query of second type.
All strings are $1$ -indexed.
$|s|$ is the length of the string $s$ .
The second line contains an integer $q$ ( $1<=q<=10^{5}$ ) — the number of queries to process.
The next $q$ lines describe the queries and may have one of the following forms:
- $1ic$ ( $1<=i<=|s|$ )
- $2lry$ ( $1<=l<=r<=|s|$ )
$c$ is a lowercase English letter and $y$ is a non-empty string consisting of only lowercase English letters.
The sum of $|y|$ over all queries of second type is at most $10^{5}$ .
It is guaranteed that there is at least one query of second type.
All strings are $1$ -indexed.
$|s|$ is the length of the string $s$ .
输出格式
For each query of type $2$ , output the required answer in a separate line.
输入输出样例
输入 #1
ababababa 3 2 1 7 aba 1 5 c 2 1 7 aba
输出 #1
3 1
输入 #2
abcdcbc 5 2 1 7 bc 1 4 b 2 4 7 bc 1 2 a 2 1 4 aa
输出 #2
2 2 1
Consider the first sample case. Initially, the string aba occurs $3$ times in the range $[1,7]$ . Note that two occurrences may overlap.
After the update, the string becomes ababcbaba and now aba occurs only once in the range $[1,7]$ .
After the update, the string becomes ababcbaba and now aba occurs only once in the range $[1,7]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted