bzoj 4690&&4602

http://www.lydsy.com/JudgeOnline/problemset.php

BZOJ的题都是中文的,但是这个鬼总是有人卡他们的服务器,然后评测就要等他们的服务器恢复正常。这点很气

这两道题目都是带权并查集的题目。

所谓的带权并查集,就是在并查集的基础上,加一个权值

两个代码差不是很多,主要的差别在于权值的不同。

 1 //BZOJ 4602
 2
 3
 4 #include <stdio.h>
 5 #include <string.h>
 6 #include <iostream>
 7 #include <math.h>
 8 const int maxn = 1e+5;
 9 #define eps 1e-5
10 using namespace std;
11
12 double ans[ maxn ];
13 int father[ maxn ];
14 int m,n;
15 int a,b,c,d;
16 bool flag;
17 int Find(int x)
18 {
19     if(father[x]!=x)
20     {
21         int t = father[x];
22         father[x]  = Find(t);
23         ans[x] *= ans[t];    //这个是权值,每一个点相对于根节点的权值
24     }
25     return father[x];
26 }
27
28 void unio(int a,int b)
29 {
30     int root1=Find(a),root2 = Find(b);
31     if(root1!=root2)
32     {
33         father[root2] = root1;
34         ans[root2]*=ans[a]/ans[b]*(double)d/c;     //合并时,根节点的权值更新
35
36     }else {
37         if(fabs(ans[a]/ans[b]-1.0*c/d)>eps){
38             flag = false;
39         }
40     }
41 }
42
43 void init()
44 {
45     for(int i = 1;i<=m;i++)
46         father[i] = i,ans[i] = 1;
47 }
48
49
50 int main()
51 {
52     int t;
53     while(cin>>t)
54     {
55         for(int Case = 1;Case<=t;Case++)
56         {
57             flag = true;
58             cin>>m>>n;
59             init();
60             for(int i = 1;i<=n;i++)
61             {
62                 cin>>a>>b>>c>>d;
63                 unio(a,b);
64             }
65             if(flag)
66                 cout<<"Case #"<<Case<<": Yes"<<endl;
67             else
68                 cout<<"Case #"<<Case<<": No"<<endl;
69
70         }
71     }
72     return 0;
73 }
 1 #include <stdio.h>
 2 #include <string.h>
 3 #include <math.h>
 4 #include <iostream>
 5 const int maxn = 1e+5;
 6 using namespace std;
 7
 8 int m,n;
 9 int father[maxn];
10 int ans[maxn];
11
12 int Find(int x)
13 {
14     if(father[x]!=x)
15     {
16         int t = father[x];
17         ans[x] += ans[t];
18         father[x] = Find(t);
19     }
20     return father[x];
21 }
22
23 void judge(int a,int b)
24 {
25     int root1 = Find(a);
26     int root2 =Find(b);
27     if(root1==root2)
28         printf("%d\n",ans[a]-ans[b]);
29     else printf("UNKNOWN\n");
30 }
31
32
33
34 void unio(int a,int b,int c)
35 {
36     int root1 = Find(a),root2 =Find(b);
37     if(root1!=root2)
38     {
39         father[root2]=root1;
40         ans[root2] =ans[a]-ans[b]-c;
41     }
42 }
43
44 int main()
45 {
46     int a,b,c;
47     char tmp;
48     while(scanf("%d%d",&n,&m),m||n)
49     {
50         for(int i = 1;i<=n;i++ )
51             father[i] = i,ans[i] = 0;
52         for(int i = 1;i<=m;i++)
53         {
54             cin>>tmp;
55             getchar();
56             if(tmp==‘!‘)
57             {
58                 cin>>a>>b>>c;
59                 unio(a,b,c);
60             }else {
61                 cin>>a>>b;
62                 judge(a,b);
63             }
64         }
65     }
66     return 0;
67 }
时间: 2024-10-18 09:49:57

bzoj 4690&&4602的相关文章

BZOJ 4690 Never Wait for Weights

带权并查集23333333 注意dis[x]+=dis[fath[x]. #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #define maxn 100500 using namespace std; int n,m,x,y,z,fath[maxn],dis[maxn]; char s[5]; int getfather(int x) { if (fath[

bzoj 4602: [Sdoi2016]齿轮

传送门 题解: 一个简单的dfs或并查集即可搞定. dfs做法:建出图来以后,由一个节点跑一遍,如果儿子节点没有被遍历过,dfs此节点,否则,判断他俩的比例与他俩到根节点的比例之比是否相等. 对于判断两节点的比例,double可以安全存下. 我怕炸精度(其实不会,感觉自己跟个zz一样),于是想不用double,用个pair存下分子分母.后来觉得导起来太麻烦,于是用逆元求(越来越傻了). 逆元不需要太大的素数,大了会T,小了会WA. bzoj上测试了5个素数:1000000007,66191,73

BZOJ 1013: [JSOI2008]球形空间产生器sphere

二次联通门 : BZOJ 1013: [JSOI2008]球形空间产生器sphere /* BZOJ 1013: [JSOI2008]球形空间产生器sphere 高斯消元 QAQ SB的我也能终于能秒题了啊 设球心的坐标为(x,y,z...) 那么就可以列n+1个方程,化化式子高斯消元即可 */ #include <cstdio> #include <iostream> #include <cstring> #define rg register #define Max

bzoj 3309 DZY Loves Math - 莫比乌斯反演 - 线性筛

对于正整数n,定义f(n)为n所含质因子的最大幂指数.例如f(1960)=f(2^3 * 5^1 * 7^2)=3, f(10007)=1, f(1)=0. 给定正整数a,b,求sigma(sigma(f(gcd(i,j)))) (i=1..a, j=1..b). Input 第一行一个数T,表示询问数. 接下来T行,每行两个数a,b,表示一个询问. Output 对于每一个询问,输出一行一个非负整数作为回答. Sample Input 4 7558588 9653114 6514903 445

【BZOJ】[HNOI2009]有趣的数列

[算法]Catalan数 [题解] 学了卡特兰数就会啦>_<! 因为奇偶各自递增,所以确定了奇偶各自的数字后排列唯一. 那么就是给2n个数分奇偶了,是不是有点像入栈出栈序呢. 将做偶数标为-1,做奇数标为+1,显然当偶数多于奇数时不合法,因为它压不住后面的奇数. 然后其实这种题目,打表就可知啦--QAQ 然后问题就是求1/(n+1)*C(2n,n)%p了,p不一定是素数. 参考bzoj礼物的解法. 看到网上清一色的素数筛+分解质因数解法,不解了好久,感觉写了假的礼物-- 后来觉得礼物的做法才比

洛谷 P2709 BZOJ 3781 小B的询问

题目描述 小B有一个序列,包含N个1~K之间的整数.他一共有M个询问,每个询问给定一个区间[L..R],求Sigma(c(i)^2)的值,其中i的值从1到K,其中c(i)表示数字i在[L..R]中的重复次数.小B请你帮助他回答询问. 输入输出格式 输入格式: 第一行,三个整数N.M.K. 第二行,N个整数,表示小B的序列. 接下来的M行,每行两个整数L.R. 输出格式: M行,每行一个整数,其中第i行的整数表示第i个询问的答案. 输入输出样例 输入样例#1: 6 4 3 1 3 2 1 1 3

BZOJ 1012: [JSOI2008]最大数maxnumber(线段树)

012: [JSOI2008]最大数maxnumber Time Limit: 3 Sec  Memory Limit: 162 MB Description 现在请求你维护一个数列,要求提供以下两种操作:1. 查询操作.语法:Q L 功能:查询当前数列中末尾L个数中的最大的数,并输出这个数的值.限制:L不超过当前数列的长度.2. 插入操作.语法:A n 功能:将n加上t,其中t是最近一次查询操作的答案(如果还未执行过查询操作,则t=0),并将所得结果对一个固定的常数D取模,将所得答案插入到数列

【BZOJ】【1016】【JSOI2008】最小生成树计数

Kruskal/并查集+枚举 唉我还是too naive,orz Hzwer 一开始我是想:最小生成树删掉一条边,再加上一条边仍是最小生成树,那么这两条边权值必须相等,但我也可以去掉两条权值为1和3的,再加上权值为2和2的,不也满足题意吗?事实上,如果这样的话……最小生成树应该是1和2,而不是1和3或2和2!!! 所以呢?所以对于一个图来说,最小生成树有几条边权为多少的边,都是固定的!所以我们可以做一遍Kruskal找出这些边权,以及每种边权出现的次数.然后,对于每种边权,比方说出现了$v_i$

【BZOJ】【2844】albus就是要第一个出场

高斯消元解XOR方程组 srO  ZYF  Orz 膜拜ZYF…… http://www.cnblogs.com/zyfzyf/p/4232100.html 1 /************************************************************** 2 Problem: 2844 3 User: Tunix 4 Language: C++ 5 Result: Accepted 6 Time:252 ms 7 Memory:2052 kb 8 *******