CF813F.Bipartite Checking

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given an undirected graph consisting of nn vertices. Initially there are no edges in the graph. Also you are given qq queries, each query either adds one undirected edge to the graph or removes it. After each query you have to check if the resulting graph is bipartite (that is, you can paint all vertices of the graph into two colors so that there is no edge connecting two vertices of the same color).

输入格式

The first line contains two integers nn and qq ( 2<=n,q<=1000002<=n,q<=100000 ).

Then qq lines follow. ii th line contains two numbers xix_{i} and yiy_{i} ( 1<=xi<yi<=n1<=x_{i}<y_{i}<=n ). These numbers describe ii th query: if there is an edge between vertices xix_{i} and yiy_{i} , then remove it, otherwise add it.

输出格式

Print qq lines. ii th line must contain YES if the graph is bipartite after ii th query, and NO otherwise.

输入输出样例

  • 输入#1

    3 5
    2 3
    1 3
    1 2
    1 2
    1 2
    

    输出#1

    YES
    YES
    NO
    YES
    NO
    
首页