CF1641C.Anonymity Is Important

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 nn 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 ll -th to rr -th (inclusive), for some values ll and rr .

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 ii -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 nn , qq ( 1n,q21051 \le n, q \le 2 \cdot 10^5 ) — the number of people and the number of queries.

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

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

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

If t=1t = 1 , the line contains one more integer jj ( 1jn1 \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 nn for which all reported results (statements from queries with t=0t = 0 ) are true.

输出格式

After each Sam question (query with t=1t = 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 44 , 55 are not sick.
  2. In the next query Sam asks the status of the patient 55 . 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 66 . We don't know any information about that patient now.
  4. After that Sam tells that there exists a sick patient among 44 , 55 , 66 .
  5. In the next query Sam asks the status of the patient 66 . Now we can tell that this patient is definitely sick.
首页