CF580E.Kefa and Watch
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 si=si+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<=105 , 1<=m+k<=105 ) — 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 ).
输出格式
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.