Butterfly
描述
有一群旅行爱好者,有一天,他们带回了n只蝴蝶回来。他们相信每一只都属于两个不同种类中的一种,为了讨论方便,我们称它们为A与B。他们想把n只标本分成两组——一些属于A且一些属于B——但是直接标记任何一个标本对于他们是非常困难,因此他们决定采用下面的方法。
对每对标本i和j,他们细心地把它们放到一起研究。如果他们以自己的判断足以确信,那么他们把这对蝴蝶标记为“相同”(这意味着他们相信这两只来自同一类)或者是“不同”(这意味着他们相信这两只来自不同的类)。他们也可以对某些标本判断不出来而弃权,在这种情况下,我们称这对标本是不明确的。
现在他们有n只标本的集合,还有对那些没有弃权的标本对的m个判断的集合(“相同”或者“不同”)。他们想知道这个数据与每只蝴蝶来自A和B中的一个类的想法是否一致。更具体地说,如果对每对蝴蝶按照下述方式标记A或B是可能的,即对每个标为“相同”的(i,j)对,就是i与j有相同标记的情况;对每个标为“不同”的(i,j)对,就是i与j有不同标记的情况。那么我们可以说这m个判断是一致的。他们正在冥思苦想自己的判断是否是一致的。请你帮他们设计合理的算法解决该问题。
输入
输入包含多组数据,以文件结束符为终止。
每组数据第一行为两个整数,分别是n和m:
n为蝴蝶的数量,编号从0到n-1
m为关系的数量
接下来是m组关系数据,每组数据占一行,为三个整数,前两个整数表示蝴蝶的编号,第三个整数为关系的种类(相同或者不同):
0为相同,1为不同
1 < n <= 1000
1 < m <= 100000
输出
合理就输出YES
不合理就输出NO
样例输入
1 2 3 4 5 6 7 8
| 3 3 0 1 0 1 2 1 0 2 1 3 3 0 1 0 1 2 1 0 2 0
|
样例输出
提示
注意输出的大写和回车
代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
| #include <iostream> #include <cstdio> #include <queue>
using namespace std;
struct table { int neighbor; int same; struct table *next; };
struct head { int type; bool visited; struct table *head; struct table *end; };
struct connection { int a; int b; int s; };
struct connection conn[100000]; struct head h[1000];
int main(void) { int m, n; int i = 0; int a = 0; queue<int> q; while (scanf("%d %d", &m, &n) != EOF) { bool res = true; for (i = 0; i < m; i++) { h[i].visited = false; h[i].head = new struct table; h[i].head->next = NULL; h[i].type = 0; h[i].end = h[i].head; } for (i = 0; i < n; i++) { scanf("%d %d %d", &conn[i].a, &conn[i].b, &conn[i].s); a = conn[i].a; h[a].end->next = new struct table; h[a].end = h[conn[i].a].end->next; h[a].end->neighbor = conn[i].b; h[a].end->same = conn[i].s; h[a].end->next = NULL; } for (i = 0; i < m; i++) { if (h[i].visited != true && h[i].head->next != NULL) { q.push(i); h[i].visited = true; } while (!q.empty()) { int cur = q.front(); q.pop(); struct table *c = h[cur].head; while (c->next != NULL) { c = c->next; if (!h[c->neighbor].visited) { h[c->neighbor].visited = true; if (c->same == 0) { h[c->neighbor].type = h[cur].type; } else { h[c->neighbor].type = 1 - h[cur].type; } q.push(c->neighbor); } } } } for (int i = 0; i < n; i++) { if(conn[i].s == 0){ if(h[conn[i].a].type != h[conn[i].b].type){ res = false; break; } } else{ if(h[conn[i].a].type == h[conn[i].b].type){ res = false; break; } } } if (res) { printf("YES\n"); } else { printf("NO\n"); } } return 0; }
|