CF1386C.Joker
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Joker returns to Gotham City to execute another evil plan. In Gotham City, there are N street junctions (numbered from 1 to N ) and M streets (numbered from 1 to M ). Each street connects two distinct junctions, and two junctions are connected by at most one street.
For his evil plan, Joker needs to use an odd number of streets that together form a cycle. That is, for a junction S and an even positive integer k , there is a sequence of junctions S,s1,…,sk,S such that there are streets connecting (a) S and s1 , (b) sk and S , and (c) si−1 and si for each i=2,…,k .
However, the police are controlling the streets of Gotham City. On each day i , they monitor a different subset of all streets with consecutive numbers j : li≤j≤ri . These monitored streets cannot be a part of Joker's plan, of course. Unfortunately for the police, Joker has spies within the Gotham City Police Department; they tell him which streets are monitored on which day. Now Joker wants to find out, for some given number of days, whether he can execute his evil plan. On such a day there must be a cycle of streets, consisting of an odd number of streets which are not monitored on that day.
输入格式
The first line of the input contains three integers N , M , and Q ( 1≤N,M,Q≤200000 ): the number of junctions, the number of streets, and the number of days to be investigated. The following M lines describe the streets. The j -th of these lines ( 1≤j≤M ) contains two junction numbers u and v ( u=v ), saying that street j connects these two junctions. It is guaranteed that any two junctions are connected by at most one street. The following Q lines contain two integers li and ri , saying that all streets j with li≤j≤ri are checked by the police on day i ( 1≤i≤Q ).
输出格式
Your output is to contain Q lines. Line i ( 1≤i≤Q ) contains "YES" if Joker can execute his plan on day i , or "NO" otherwise.
Scoring
Subtasks:
- (6 points) 1≤N,M,Q≤200
- (8 points) 1≤N,M,Q≤2000
- (25 points) li=1 for i=1,…,Q
- (10 points) li≤200 for i=1,…,Q
- (22 points) Q≤2000
- (29 points) No further constraints
输入输出样例
输入#1
6 8 2 1 3 1 5 1 6 2 5 2 6 3 4 3 5 5 6 4 8 4 7
输出#1
NO YES
说明/提示
The graph in the example test: