Nowadays, at least one wrestling match is held every year in our country. There are a lot of people in the game is "good player”, the rest is "bad player”. Now, Xiao Ming is referee of the wrestling match and he has a list of the matches in his hand. At the same time, he knows some people are good players,some are bad players. He believes that every game is a battle between the good and the bad player. Now he wants to know whether all the people can be divided into "good player" and "bad player".
InputInput contains multiple sets of data.For each set of data,there are four numbers in the first line:N (1 ≤ N≤ 1000)、M(1 ≤M ≤ 10000)、X,Y(X+Y≤N ),in order to show the number of players(numbered 1toN ),the number of matches,the number of known "good players" and the number of known "bad players".In the next M lines,Each line has two numbersa, b(a≠b) ,said there is a game between a and b .The next line has X different numbers.Each number is known as a "good player" number.The last line contains Y different numbers.Each number represents a known "bad player" number.Data guarantees there will not be a player number is a good player and also a bad player. OutputIf all the people can be divided into "good players" and "bad players”, output "YES", otherwise output "NO". Sample Input
5 4 0 0
1 3
1 4
3 5
4 5
5 4 1 0
1 3
1 4
3 5
4 5
2
Sample Output
NO
YES
(引用)题意比较不明…看了很久才搞出来 个人理解 就是: n个人 给定m对关系:a,b不在一个集合中 已知x个人是好球员的集合中的人 y个人是坏球员 判断是否能分成2个集合 如果1是好球员 2是坏球员 其余的球员与1,2无关系 能分成2个集合 也算YES
思路:判定二分图模板一上,先从确定阵营的人开始染色,如果矛盾,NO;
再把上次dfs还没确定的人染色,如果矛盾,NO;
最后检查有没有没确定阵营的,有的话,NO;
其余情况YES;
#include #include #include #include #include #include #include #include #include #include #include #include #include