CSES - Distinct Values Queries II
  • Time limit: 1.00 s
  • Memory limit: 512 MB

Given an array of nn integers, your task is to process qq queries of the following types:

  1. update the value at position kk to uu
  2. check if every value in range [a,b][a, b] is distinct

Input

The first line has two integers nn and qq: the number of values and queries.

The second line has nn integers x1,x2,,xnx_1, x_2,\dots, x_n: the array values.

Finally, there are qq lines describing the queries. Each line has three integers: either "11 kk uu" or "22 aa bb".

Output

For each query of type 2, print YES if every value in the range is distinct and NO otherwise.

Constraints

  • 1n,q21051 \le n, q \le 2 \cdot 10^5
  • 1xi,u1091 \le x_i, u \le 10^9
  • 1kn1 \le k \le n
  • 1abn1 \le a \le b \le n

Example

Input:

5 4
3 2 7 2 8
2 3 5
2 2 5
1 2 9
2 2 5

Output:

YES
NO
YES