码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 3047 Zjnu Stadium

时间:2014-05-08 10:37:28      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   tar   color   

http://acm.hdu.edu.cn/showproblem.php?pid=3047

带权并差集

bubuko.com,布布扣
 1 #include <cstdio>
 2 #include <cstring>
 3 #include <algorithm>
 4 #define maxn 60000
 5 using namespace std;
 6 
 7 int f[maxn],d[maxn];
 8 int ans=0;
 9 int n,m;
10 
11 int find1(int x)
12 {
13     if(x==f[x]) return x;
14     int f1=f[x];
15     f[x]=find1(f[x]);
16     d[x]+=d[f1];
17     return f[x];
18 }
19 
20 void  union1(int a,int b,int x)
21 {
22     int fa=find1(a);
23     int fb=find1(b);
24     if(fa!=fb)
25     {
26         f[fb]=fa;
27         d[fb]=d[a]+x-d[b];
28         return;
29     }
30     if(fa==fb)
31     {
32         if(d[b]-d[a]!=x) ans++;
33     }
34 }
35 
36 void inti()
37 {
38     for(int i=1; i<=n; i++)
39     {
40         f[i]=i;
41     }
42     memset(d,0,sizeof(d));
43     ans=0;
44 }
45 
46 int main()
47 {
48     while(scanf("%d%d",&n,&m)!=EOF)
49     {
50         inti();
51         int a1,b1,x1;
52         for(int i=1; i<=m; i++)
53         {
54             scanf("%d%d%d",&a1,&b1,&x1);
55             union1(a1,b1,x1);
56         }
57         printf("%d\n",ans);
58     }
59     return 0;
60 }
View Code

 

hdu 3047 Zjnu Stadium,布布扣,bubuko.com

hdu 3047 Zjnu Stadium

标签:style   blog   class   code   tar   color   

原文地址:http://www.cnblogs.com/fanminghui/p/3714492.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!