标签:
Description
Input
Output
Sample Input
100 7
1 101 1
2 1 2
2 2 3
2 3 3
1 1 3
2 3 1
1 5 5
Sample Output3
我用1表示a吃b,2表示a被b吃,0表示同类
则每次输入 w,a,b 后,w--
1.若a或b>n
sum++;
2.若a==b&&w!=0
sum++;
3.若faa==fab 但是 a与b的关系 ( 由前面推出 ) 和 给出 的w 矛盾
sum++;
注意的是,这道题只有一个数据,多数据会wa
然后,代码中的一些式子,是我枚举所有可能情况后发现的,网上看了,有不同式子的,但是计算出来的结果都是一样的(前提 是表示吃与被吃的数字是一样的)。。
1 #include<cstdio> 2 3 const int maxn=50000+5; 4 int father[maxn]; 5 int rel[maxn]; //0表示同类,1表示吃父亲节点,2表示被吃 6 int sum; 7 int n; 8 int w; 9 10 void make_set() 11 { 12 sum=0; 13 for(int i=1;i<=n;i++){ 14 father[i]=i; 15 rel[i]=0; 16 } 17 } 18 19 int find_set(int x) 20 { 21 if(father[x]==x) 22 return x; 23 else{ 24 int prefather=father[x]; 25 father[x]=find_set(father[x]); 26 rel[x]=(rel[x]+rel[prefather])%3; 27 return father[x]; 28 } 29 } 30 31 void union_set(int x,int y) 32 { 33 int fax=find_set(x); 34 int fay=find_set(y); 35 if(fax==fay) 36 { 37 int temp=(rel[x]+2*rel[y])%3; 38 if(temp!=w) 39 sum++; 40 } 41 else{ 42 father[fax]=fay; 43 rel[fax]=(w+2*rel[x]+rel[y])%3; 44 } 45 } 46 47 int main() 48 { 49 int m; 50 scanf("%d%d",&n,&m); 51 make_set(); 52 int u,v; 53 for(int i=1;i<=m;i++) 54 { 55 scanf("%d%d%d",&w,&u,&v); 56 w--; 57 if(u>n||v>n) 58 sum++; 59 else if(u==v&&w!=0) 60 sum++; 61 else 62 union_set(u,v); 63 } 64 printf("%d\n",sum); 65 return 0; 66 }
标签:
原文地址:http://www.cnblogs.com/-maybe/p/4433732.html