题目链接

题解:并查集把一个家的并在一起,特殊的一点是编号大的并到小的去。这个题有个坑编号可能为0000,会错数据3和5。

  1. 1 #include<bits/stdc++.h>
  2. 2 using namespace std;
  3. 3
  4. 4 struct node
  5. 5 {
  6. 6 int id,num,area,fa,ma;
  7. 7 int ch[10];
  8. 8 }p[100100];
  9. 9
  10. 10 struct fz
  11. 11 {
  12. 12 int id,all;
  13. 13 double num,area;
  14. 14 }q[100100];
  15. 15
  16. 16 int par[10100];
  17. 17 int s[10010];
  18. 18 int vis[10010];
  19. 19
  20. 20 bool cmp(fz x,fz y)
  21. 21 {
  22. 22 if(x.area==y.area) return x.id<y.id;
  23. 23 return x.area>y.area;
  24. 24 }
  25. 25
  26. 26 void init()
  27. 27 {
  28. 28 for(int i=0;i<10100;i++)
  29. 29 par[i]=i;
  30. 30 }
  31. 31
  32. 32 int find(int x)
  33. 33 {
  34. 34 if(x!=par[x]) par[x]=find(par[x]);
  35. 35 return par[x];
  36. 36 }
  37. 37
  38. 38 void unionn(int a,int b)
  39. 39 {
  40. 40 int fa=find(a),fb=find(b);
  41. 41 if(fa>fb) par[fa]=fb;
  42. 42 else par[fb]=fa;
  43. 43 }
  44. 44
  45. 45 int main()
  46. 46 {
  47. 47 init();
  48. 48 int n;
  49. 49 cin>>n;
  50. 50 for(int i=0;i<n;i++){
  51. 51 int k;
  52. 52 cin>>p[i].id;
  53. 53 s[p[i].id]=1;
  54. 54 cin>>p[i].fa>>p[i].ma>>k;
  55. 55 if(p[i].fa!=-1){
  56. 56 unionn(p[i].id,p[i].fa);
  57. 57 s[p[i].fa]=1;
  58. 58 }
  59. 59 if(p[i].ma!=-1){
  60. 60 unionn(p[i].id,p[i].ma);
  61. 61 s[p[i].ma]=1;
  62. 62 }
  63. 63 for(int j=0;j<k;j++){
  64. 64 cin>>p[i].ch[j];
  65. 65 if(p[i].ch[j]!=-1){
  66. 66 unionn(p[i].id,p[i].ch[j]);
  67. 67 s[p[i].ch[j]]=1;
  68. 68 }
  69. 69 }
  70. 70 cin>>p[i].num>>p[i].area;
  71. 71 }
  72. 72 for(int i=0;i<10010;i++)
  73. 73 q[i].id=-1;
  74. 74 int cnt=0;
  75. 75 for(int i=0;i<n;i++){
  76. 76 int x=find(p[i].id);
  77. 77 if(!vis[x]) cnt++;
  78. 78 vis[x]=1;
  79. 79 q[x].id=x;
  80. 80 q[x].num+=p[i].num;
  81. 81 q[x].area+=p[i].area;
  82. 82 }
  83. 83 for(int i=0;i<10010;i++)
  84. 84 if(s[i]) q[find(i)].all++;
  85. 85 for(int i=0;i<10010;i++){
  86. 86 if(q[i].id!=-1){
  87. 87 q[i].num=q[i].num/1.0/q[i].all;
  88. 88 if(q[i].all) q[i].area=q[i].area/1.0/q[i].all;
  89. 89 }
  90. 90 }
  91. 91 sort(q,q+10010,cmp);
  92. 92 printf("%d\n",cnt);
  93. 93 for(int i=0;i<cnt;i++){
  94. 94 printf("%04d %d %.3f %.3f\n",q[i].id,q[i].all,q[i].num,q[i].area);
  95. 95 }
  96. 96 return 0;
  97. 97 }

L2-007 家庭房产 (25分) 并查集的更多相关文章

  1. L2-013 红色警报 (25分) 并查集复杂度

    代码: 1 /* 2 这道题也是简单并查集,并查集复杂度: 3 空间复杂度为O(N),建立一个集合的时间复杂度为O(1),N次合并M查找的时间复杂度为O(M Alpha(N)), 4 这里Alpha是 ...

  2. PAT-1021 Deepest Root (25 分) 并查集判断成环和联通+求树的深度

    A graph which is connected and acyclic can be considered a tree. The height of the tree depends on t ...

  3. PAT甲题题解-1114. Family Property (25)-(并查集模板题)

    题意:给出每个人的家庭成员信息和自己的房产个数与房产总面积,让你统计出每个家庭的人口数.人均房产个数和人均房产面积.第一行输出家庭个数,随后每行输出家庭成员的最小编号.家庭人口数.人均房产个数.人均房 ...

  4. PAT-1107 Social Clusters (30 分) 并查集模板

    1107 Social Clusters (30 分) When register on a social network, you are always asked to specify your ...

  5. PAT A 1118. Birds in Forest (25)【并查集】

    并查集合并 #include<iostream> using namespace std; const int MAX = 10010; int father[MAX],root[MAX] ...

  6. PAT甲题题解-1021. Deepest Root (25)-dfs+并查集

    dfs求最大层数并查集求连通个数 #include <iostream> #include <cstdio> #include <algorithm> #inclu ...

  7. PAT题解-1118. Birds in Forest (25)-(并查集模板题)

    如题... #include <iostream> #include <cstdio> #include <algorithm> #include <stri ...

  8. PAT甲题题解-1126. Eulerian Path (25)-欧拉回路+并查集判断图的连通性

    题目已经告诉如何判断欧拉回路了,剩下的有一点要注意,可能图本身并不连通. 所以这里用并查集来判断图的联通性. #include <iostream> #include <cstdio ...

  9. 1021. Deepest Root (25)——DFS+并查集

    http://pat.zju.edu.cn/contests/pat-a-practise/1021 无环连通图也可以视为一棵树,选定图中任意一点作为根,如果这时候整个树的深度最大,则称其为 deep ...

随机推荐

  1. 利用css和jquery制成弹幕

    1.首先上图看下效果 2.废话不多说,直接上代码 1>html代码 <div class="barrage"> <div class="scree ...

  2. 万字长文爆肝 DNS 协议!

    试想一个问题,我们人类可以有多少种识别自己的方式?可以通过身份证来识别,可以通过社保卡号来识别,也可以通过驾驶证来识别,尽管我们有多种识别方式,但在特定的环境下,某种识别方法可能比另一种方法更为适合. ...

  3. Kaggle泰坦尼克-Python(建模完整流程,小白学习用)

    参考Kernels里面评论较高的一篇文章,整理作者解决整个问题的过程,梳理该篇是用以了解到整个完整的建模过程,如何思考问题,处理问题,过程中又为何下那样或者这样的结论等! 最后得分并不是特别高,只是到 ...

  4. 【Git】4、创建代码仓库,HTTP、SSH拉取远端代码

    拉取远端代码:使用Git命令下载远程仓库到本地 文章目录 拉取远端代码:使用Git命令下载远程仓库到本地 1.创建远程代码仓库 2.创建仓库 3.进入仓库 4.HTTP(S)获取远程仓库 首次拉取 更 ...

  5. xtrabackup 备份与恢复

    书上摘抄 ---深入浅出mysql 448页  grant reload on *.* to 'backup'@'localhost' identified by '123456'; grant re ...

  6. rename命令和批量重命名

    本文为转载文章,转发自 https://blog.csdn.net/GGxiaobai/article/details/53507454 早期版本的rename是C语言版本,如今新的Ubuntu中采用 ...

  7. SAP 技术设置(technical setting)

    在创建数据库表的时候,需要设置它的技术参数:这样才能使用. 在技术设置里,有个数据类(data class),如APPL0,等等. 有好多值可以供我们选择.这些值保存在表DDART中,表的描述:DD: ...

  8. Centos7 虚拟机优化

    配置yum源 rm -f /etc/yum.repos.d/* curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/ ...

  9. 运用 pyinstaller 打包的python exe文件运行 去掉命令行窗口及其他参数汇总

    运行exe文件的时候,会弹出一个dos命令窗口,这个窗口可以看到一些打印信息,如果想只运行tkinter 页面,去掉dos窗口需要在打包的时候 加上 -w 参数 pyinstaller -F XX.p ...

  10. Py基础—变量名,条件循环,空执行,编码,运算符,字符比较,简化写法

    变量名 只能是字母,数字,下划线.数字不能开头,不要和python内置的东西重复.赋予变量名内容:name1 = "shit" 输出变量名内容 print(name1) 条件语句 ...