6811.Distinct Values Queries II

Time Limit: 1s Memory Limit: 512MB

Given an array of $n$ integers, your task is to process $q$ queries of the following types:

update the value at positionktoucheck if every value in range[a, b]is distinct

Input Format(From the terminal/stdin)

The first line has two integers $n$ and $q$ : the number of values and queries.

The second line has $n$ integers $x_1, x_2,\dots, x_n$ : the array values.

Finally, there are $q$ lines describing the queries. Each line has three integers: either " $1$ $k$ $u$ " or " $2$ $a$ $b$ ".

  • $1 \le n, q \le 2 \cdot 10^5$
  • $1 \le x_i, u \le 10^9$
  • $1 \le k \le n$
  • $1 \le a \le b \le n$

Output Format(To the terminal/stdout)

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

Sample Input

Copy
5 4
3 2 7 2 8
2 3 5
2 2 5
1 2 9
2 2 5
 · \n
 · · · · \n
 · · \n
 · · \n
 · · \n
 · · \n

Sample Output

Copy
YES
NO
YES
   \n
  \n
   \n
Source: CSES, Range Queries, 3356

Submit

请先 登录

© 2025 FAQs