F - Substring of Sorted String
Editorial
/


Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
英小文字からなる長さ の文字列 と 個のクエリが与えられます。クエリを順に処理してください。
クエリは以下の 種類です。
1 x c
: の 文字目を文字 に置き換える2 l r
: を文字の昇順に並び替えて得られる文字列を とする。 の 文字目から 文字目までからなる文字列が の部分文字列であるときYes
、部分文字列でないときNo
を出力する
部分文字列とは?
の部分文字列とは、 の先頭から 文字以上、末尾から 文字以上削除して得られる文字列のことをいいます。 例えば、ab
は abc
の部分文字列ですが、ac
は abc
の部分文字列ではありません。
制約
- は英小文字からなる長さ の文字列
- 種類目のクエリにおいて、
- 種類目のクエリにおいて、 は英小文字
- 種類目のクエリにおいて、
入力
入力は以下の形式で標準入力から与えられる。ただし、 で 番目のクエリを表す。
出力
問題文中の指示に従ってクエリを処理せよ。
入力例 1Copy
Copy
6 abcdcf 4 2 1 3 2 2 6 1 5 e 2 2 6
出力例 1Copy
Copy
Yes No Yes
- 番目のクエリにおいて、 を文字の昇順に並び替えて得られる文字列 は
abccdf
です。 の 文字目から 文字目までからなる文字列はabc
であり の部分文字列です。よってYes
を出力します。 - 番目のクエリにおいて、 を文字の昇順に並び替えて得られる文字列 は
abccdf
です。 の 文字目から 文字目までからなる文字列はbcdcf
であり の部分文字列ではありません。よってNo
を出力します。 - 番目のクエリにより、 の 文字目が
e
に置き換えられ、 はabcdef
となります。 - 番目のクエリにおいて、 を文字の昇順に並び替えて得られる文字列 は
abcdef
です。 の 文字目から 文字目までからなる文字列はbcdef
であり の部分文字列です。よってYes
を出力します。
Score : points
Problem Statement
You are given a string of length consisting of lowercase English letters, and queries. Process the queries in order.
Each query is of one of the following two kinds:
1 x c
: replace the -th character of by the character .2 l r
: let be the string obtained by sorting the characters of in ascending order. PrintYes
if the string consisting of the -th through -th characters of is a substring of ; printNo
otherwise.
What is a substring?
A substring of is a string obtained by removing or more initial characters and or more final characters of . For example,ab
is a substring of abc
, while ac
is not a substring of abc
.
Constraints
- is a string of length consisting of lowercase English letters.
- For each query of the first kind, .
- For each query of the first kind, is a lowercase English letter.
- For each query of the second kind, .
Input
The input is given from Standard Input in the following format, where denotes the -th query:
Output
Process the queries as instructed in the Problem Statement.
Sample Input 1Copy
Copy
6 abcdcf 4 2 1 3 2 2 6 1 5 e 2 2 6
Sample Output 1Copy
Copy
Yes No Yes
- In the -st query,
abccdf
is the string obtained by sorting the characters of in ascending order. The stringabc
, consisting of the -st through -rd characters of , is a substring of , soYes
should be printed. - In the -nd query,
abccdf
is the string obtained by sorting the characters of in ascending order. The stringbcdcf
, consisting of the -nd through -th characters of , is not a substring of , soNo
should be printed. - The -rd query sets the -th character of to
e
, makingabcdef
. - In the -th query,
abcdef
is the string obtained by sorting the characters of in ascending order. The stringbcdef
, consisting of the -nd through -th characters of , is a substring of , soYes
should be printed.