CF813F.Bipartite Checking
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given an undirected graph consisting of n vertices. Initially there are no edges in the graph. Also you are given q 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 n and q ( 2<=n,q<=100000 ).
Then q lines follow. i th line contains two numbers xi and yi ( 1<=xi<yi<=n ). These numbers describe i th query: if there is an edge between vertices xi and yi , then remove it, otherwise add it.
输出格式
Print q lines. i th line must contain YES if the graph is bipartite after i th query, and NO otherwise.
输入输出样例
输入#1
3 5 2 3 1 3 1 2 1 2 1 2
输出#1
YES YES NO YES NO