F - Substring of Sorted String Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 500500

問題文

英小文字からなる長さ NN の文字列 SSQQ 個のクエリが与えられます。クエリを順に処理してください。

クエリは以下の 22 種類です。

  • 1 x cSSxx 文字目を文字 cc に置き換える
  • 2 l rSS を文字の昇順に並び替えて得られる文字列を TT とする。SSll 文字目から rr 文字目までからなる文字列が TT の部分文字列であるとき Yes、部分文字列でないとき No を出力する
部分文字列とは? SS部分文字列とは、SS の先頭から 00 文字以上、末尾から 00 文字以上削除して得られる文字列のことをいいます。 例えば、ababc の部分文字列ですが、acabc の部分文字列ではありません。

制約

  • 1N1051\leq N \leq 10^5
  • SS は英小文字からなる長さ NN の文字列
  • 1Q1051 \leq Q \leq 10^5
  • 11 種類目のクエリにおいて、1xN1 \leq x \leq N
  • 11 種類目のクエリにおいて、cc は英小文字
  • 22 種類目のクエリにおいて、1lrN1 \leq l \leq r \leq N

入力

入力は以下の形式で標準入力から与えられる。ただし、queryi\text{query}_iii 番目のクエリを表す。

NN
SS
QQ
query1\text{query}_1
query2\text{query}_2
\vdots
queryQ\text{query}_Q

出力

問題文中の指示に従ってクエリを処理せよ。


入力例 1Copy

Copy
6
abcdcf
4
2 1 3
2 2 6
1 5 e
2 2 6

出力例 1Copy

Copy
Yes
No
Yes
  • 11 番目のクエリにおいて、SS を文字の昇順に並び替えて得られる文字列 TTabccdf です。 SS11 文字目から 33 文字目までからなる文字列は abc であり TT の部分文字列です。よって Yes を出力します。
  • 22 番目のクエリにおいて、SS を文字の昇順に並び替えて得られる文字列 TTabccdf です。 SS22 文字目から 66 文字目までからなる文字列は bcdcf であり TT の部分文字列ではありません。よって No を出力します。
  • 33 番目のクエリにより、SS55 文字目が e に置き換えられ、SSabcdef となります。
  • 44 番目のクエリにおいて、SS を文字の昇順に並び替えて得られる文字列 TTabcdef です。 SS22 文字目から 66 文字目までからなる文字列は bcdef であり TT の部分文字列です。よって Yes を出力します。

Score : 500500 points

Problem Statement

You are given a string SS of length NN consisting of lowercase English letters, and QQ queries. Process the queries in order.

Each query is of one of the following two kinds:

  • 1 x c : replace the xx-th character of SS by the character cc.
  • 2 l r : let TT be the string obtained by sorting the characters of SS in ascending order. Print Yes if the string consisting of the ll-th through rr-th characters of SS is a substring of TT; print No otherwise.
What is a substring? A substring of SS is a string obtained by removing 00 or more initial characters and 00 or more final characters of SS. For example, ab is a substring of abc, while ac is not a substring of abc.

Constraints

  • 1N1051\leq N \leq 10^5
  • SS is a string of length NN consisting of lowercase English letters.
  • 1Q1051 \leq Q \leq 10^5
  • For each query of the first kind, 1xN1 \leq x \leq N.
  • For each query of the first kind, cc is a lowercase English letter.
  • For each query of the second kind, 1lrN1 \leq l \leq r \leq N.

Input

The input is given from Standard Input in the following format, where queryi\text{query}_i denotes the ii-th query:

NN
SS
QQ
query1\text{query}_1
query2\text{query}_2
\vdots
queryQ\text{query}_Q

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 11-st query, abccdf is the string TT obtained by sorting the characters of SS in ascending order. The string abc, consisting of the 11-st through 33-rd characters of SS, is a substring of TT, so Yes should be printed.
  • In the 22-nd query, abccdf is the string TT obtained by sorting the characters of SS in ascending order. The string bcdcf, consisting of the 22-nd through 66-th characters of SS, is not a substring of TT, so No should be printed.
  • The 33-rd query sets the 55-th character of SS to e, making SS abcdef.
  • In the 44-th query, abcdef is the string TT obtained by sorting the characters of SS in ascending order. The string bcdef, consisting of the 22-nd through 66-th characters of SS, is a substring of TT, so Yes should be printed.


2025-04-05 (Sat)
00:55:09 +00:00