题库练习 Anonymity Is Important
← 上一题 下一题 →

A14950 | Anonymity Is Important

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

In the work of a doctor, it is important to maintain the anonymity of clients and the results of tests. The test results are sent to everyone personally by email, but people are very impatient and they want to know the results right away.

That's why in the testing lab "De-vitro" doctors came up with an experimental way to report the results. Let's assume that $n$ people took the tests in the order of the queue. Then the chief doctor Sam can make several statements, in each telling if there is a sick person among the people in the queue from $l$ -th to $r$ -th (inclusive), for some values $l$ and $r$ .

During the process, Sam will check how well this scheme works and will be interested in whether it is possible to find out the test result of $i$ -th person from the information he announced. And if it can be done, then is that patient sick or not.

Help Sam to test his scheme.

输入格式

The first line contains two integers $n$ , $q$ ( $1 \le n, q \le 2 \cdot 10^5$ ) — the number of people and the number of queries.

In each of the next $q$ lines, the description of the query is given. The first number in the line is $t$ ( $t = 0$ or $t = 1$ ) — the type of the query.

If $t = 0$ , the line contains three more integers $l, r, x$ ( $1 \le l \le r \le n$ , $x = 0$ or $x = 1$ ). This query means that Sam tells that among the people in the queue from $l$ -th to $r$ -th (inclusive):

- there was at least one sick person, if $x=1$ ,
- there is no sick people, if $x=0$ .

If $t = 1$ , the line contains one more integer $j$ ( $1 \le j \le n$ ) — the position of the patient in the queue, for which Sam wants to know the status.

All queries are correct, that means that there always exists an example of the queue of length $n$ for which all reported results (statements from queries with $t = 0$ ) are true.

输出格式

After each Sam question (query with $t = 1$ ) print:

- "NO", if the patient is definitely not sick,
- "YES", if the patient is definitely sick.
- "N/A", if it is impossible to definitely identify the status of patient having the given information.

输入输出样例

输入 #1
6 9
0 4 5 0
1 5
1 6
0 4 6 1
1 6
0 2 5 1
0 2 2 0
1 3
1 2
输出 #1
NO
N/A
YES
YES
NO
C++ 编辑器
输入
输出