A10006 | Kefa and Watch
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
One day Kefa the parrot was walking down the street as he was on the way home from the restaurant when he saw something glittering by the road. As he came nearer he understood that it was a watch. He decided to take it to the pawnbroker to earn some money.
The pawnbroker said that each watch contains a serial number represented by a string of digits from $0$ to $9$ , and the more quality checks this number passes, the higher is the value of the watch. The check is defined by three positive integers $l$ , $r$ and $d$ . The watches pass a check if a substring of the serial number from $l$ to $r$ has period $d$ . Sometimes the pawnbroker gets distracted and Kefa changes in some substring of the serial number all digits to $c$ in order to increase profit from the watch.
The seller has a lot of things to do to begin with and with Kefa messing about, he gave you a task: to write a program that determines the value of the watch.
Let us remind you that number $x$ is called a period of string $s$ ( $1<=x<=|s|$ ), if $s_{i}=s_{i+x}$ for all $i$ from 1 to $|s|-x$ .
The pawnbroker said that each watch contains a serial number represented by a string of digits from $0$ to $9$ , and the more quality checks this number passes, the higher is the value of the watch. The check is defined by three positive integers $l$ , $r$ and $d$ . The watches pass a check if a substring of the serial number from $l$ to $r$ has period $d$ . Sometimes the pawnbroker gets distracted and Kefa changes in some substring of the serial number all digits to $c$ in order to increase profit from the watch.
The seller has a lot of things to do to begin with and with Kefa messing about, he gave you a task: to write a program that determines the value of the watch.
Let us remind you that number $x$ is called a period of string $s$ ( $1<=x<=|s|$ ), if $s_{i}=s_{i+x}$ for all $i$ from 1 to $|s|-x$ .
输入格式
The first line of the input contains three positive integers $n$ , $m$ and $k$ ( $1<=n<=10^{5}$ , $1<=m+k<=10^{5}$ ) — the length of the serial number, the number of change made by Kefa and the number of quality checks.
The second line contains a serial number consisting of $n$ digits.
Then $m+k$ lines follow, containing either checks or changes.
The changes are given as 1 $l$ $r$ $c$ ( $1<=l<=r<=n$ , $0<=c<=9$ ). That means that Kefa changed all the digits from the $l$ -th to the $r$ -th to be $c$ .
The checks are given as 2 $l$ $r$ $d$ ( $1<=l<=r<=n$ , $1<=d<=r-l+1$ ).
The second line contains a serial number consisting of $n$ digits.
Then $m+k$ lines follow, containing either checks or changes.
The changes are given as 1 $l$ $r$ $c$ ( $1<=l<=r<=n$ , $0<=c<=9$ ). That means that Kefa changed all the digits from the $l$ -th to the $r$ -th to be $c$ .
The checks are given as 2 $l$ $r$ $d$ ( $1<=l<=r<=n$ , $1<=d<=r-l+1$ ).
输出格式
For each check on a single line print "YES" if the watch passed it, otherwise print "NO".
输入输出样例
输入 #1
3 1 2 112 2 2 3 1 1 1 3 8 2 1 2 1
输出 #1
NO YES
输入 #2
6 2 3 334934 2 2 5 2 1 4 4 3 2 1 6 3 1 2 3 8 2 3 6 1
输出 #2
NO YES NO
In the first sample test two checks will be made. In the first one substring "12" is checked on whether or not it has period 1, so the answer is "NO". In the second one substring "88", is checked on whether or not it has period 1, and it has this period, so the answer is "YES".
In the second statement test three checks will be made. The first check processes substring "3493", which doesn't have period 2. Before the second check the string looks as "334334", so the answer to it is "YES". And finally, the third check processes substring "8334", which does not have period 1.
In the second statement test three checks will be made. The first check processes substring "3493", which doesn't have period 2. Before the second check the string looks as "334334", so the answer to it is "YES". And finally, the third check processes substring "8334", which does not have period 1.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted