CF1555F.Good Graph
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You have an undirected graph consisting of n vertices with weighted edges.
A simple cycle is a cycle of the graph without repeated vertices. Let the weight of the cycle be the XOR of weights of edges it consists of.
Let's say the graph is good if all its simple cycles have weight 1 . A graph is bad if it's not good.
Initially, the graph is empty. Then q queries follow. Each query has the next type:
- u v x — add edge between vertices u and v of weight x if it doesn't make the graph bad.
For each query print, was the edge added or not.
输入格式
The first line contains two integers n and q ( 3≤n≤3⋅105 ; 1≤q≤5⋅105 ) — the number of vertices and queries.
Next q lines contain queries — one per line. Each query contains three integers u , v and x ( 1≤u,v≤n ; u=v ; 0≤x≤1 ) — the vertices of the edge and its weight.
It's guaranteed that there are no multiple edges in the input.
输出格式
For each query, print YES if the edge was added to the graph, or NO otherwise (both case-insensitive).
输入输出样例
输入#1
9 12 6 1 0 1 3 1 3 6 0 6 2 0 6 4 1 3 4 1 2 4 0 2 5 0 4 5 0 7 8 1 8 9 1 9 7 0
输出#1
YES YES YES YES YES NO YES YES NO YES YES NO