309199: CF1641C. Anonymity Is Important

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Anonymity Is Important

题意翻译

对于一排病人, 医生可以做三种操作: 1. $l$, $r$, $0$ 表示第 $l$ 到 $r$ 个人中没有病人 1. $l$, $r$, $1$ 表示第 $l$ 到 $r$ 个人中至少有一个病人生病 1. 询问第 $j$ 个病人有没有生病 对于每一个操作 3 , 可以确定生病输出 ```YES``` , 可以确定不生病输出 ```NO``` , 否则输出 ```N/A```

题目描述

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

说明

In the first test for the five first queries: 1. Initially Sam tells that people $ 4 $ , $ 5 $ are not sick. 2. In the next query Sam asks the status of the patient $ 5 $ . From the previous query, we know that the patient is definitely not sick. 3. In the next query Sam asks the status of the patient $ 6 $ . We don't know any information about that patient now. 4. After that Sam tells that there exists a sick patient among $ 4 $ , $ 5 $ , $ 6 $ . 5. In the next query Sam asks the status of the patient $ 6 $ . Now we can tell that this patient is definitely sick.

Input

题意翻译

对于一排病人, 医生可以做三种操作: 1. $l$, $r$, $0$ 表示第 $l$ 到 $r$ 个人中没有病人 1. $l$, $r$, $1$ 表示第 $l$ 到 $r$ 个人中至少有一个病人生病 1. 询问第 $j$ 个病人有没有生病 对于每一个操作 3 , 可以确定生病输出 ```YES``` , 可以确定不生病输出 ```NO``` , 否则输出 ```N/A```

加入题单

算法标签: