CF553C.Love Triangles
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are many anime that are about "love triangles": Alice loves Bob, and Charlie loves Bob as well, but Alice hates Charlie. You are thinking about an anime which has n characters. The characters are labeled from 1 to n . Every pair of two characters can either mutually love each other or mutually hate each other (there is no neutral state).
You hate love triangles (A-B are in love and B-C are in love, but A-C hate each other), and you also hate it when nobody is in love. So, considering any three characters, you will be happy if exactly one pair is in love (A and B love each other, and C hates both A and B), or if all three pairs are in love (A loves B, B loves C, C loves A).
You are given a list of m known relationships in the anime. You know for sure that certain pairs love each other, and certain pairs hate each other. You're wondering how many ways you can fill in the remaining relationships so you are happy with every triangle. Two ways are considered different if two characters are in love in one way but hate each other in the other. Print this count modulo 1000000007 .
输入格式
The first line of input will contain two integers n,m ( 3<=n<=100000 , 0<=m<=100000 ).
The next m lines will contain the description of the known relationships. The i -th line will contain three integers ai,bi,ci . If ci is 1, then ai and bi are in love, otherwise, they hate each other ( 1<=ai,bi<=n , ai=bi , ).
Each pair of people will be described no more than once.
输出格式
Print a single integer equal to the number of ways to fill in the remaining pairs so that you are happy with every triangle modulo 1000000007 .
输入输出样例
输入#1
3 0
输出#1
4
输入#2
4 4 1 2 1 2 3 1 3 4 0 4 1 0
输出#2
1
输入#3
4 4 1 2 1 2 3 1 3 4 0 4 1 1
输出#3
0
说明/提示
In the first sample, the four ways are to:
- Make everyone love each other
- Make 1 and 2 love each other, and 3 hate 1 and 2 (symmetrically, we get 3 ways from this).
In the second sample, the only possible solution is to make 1 and 3 love each other and 2 and 4 hate each other.