当前位置:   article > 正文

7-10 社交网络图中结点的“重要性”计算(30 point(s)) 【并查集+BFS】

7-2 我爱三角形 (30 point(s

7-10 社交网络图中结点的“重要性”计算(30 point(s))

在社交网络中,个人或单位(结点)之间通过某些关系(边)联系起来。他们受到这些关系的影响,这种影响可以理解为网络中相互连接的结点之间蔓延的一种相互作用,可以增强也可以减弱。而结点根据其所处的位置不同,其在网络中体现的重要性也不尽相同。

“紧密度中心性”是用来衡量一个结点到达其它结点的“快慢”的指标,即一个有较高中心性的结点比有较低中心性的结点能够更快地(平均意义下)到达网络中的其它结点,因而在该网络的传播过程中有更重要的价值。在有N个结点的网络中,结点v​i​​的“紧密度中心性”Cc(v​i​​)数学上定义为v​i​​到其余所有结点v​j​​ (j≠i) 的最短距离d(v​i​​,v​j​​)的平均值的倒数:

对于非连通图,所有结点的紧密度中心性都是0。

给定一个无权的无向图以及其中的一组结点,计算这组结点中每个结点的紧密度中心性。
输入格式:

输入第一行给出两个正整数N和M,其中N(≤10​4​​)是图中结点个数,顺便假设结点从1到N编号;M(≤10​5​​)是边的条数。随后的M行中,每行给出一条边的信息,即该边连接的两个结点编号,中间用空格分隔。最后一行给出需要计算紧密度中心性的这组结点的个数K(≤100)以及K个结点编号,用空格分隔。
输出格式:

按照Cc(i)=x.xx的格式输出K个给定结点的紧密度中心性,每个输出占一行,结果保留到小数点后2位。
输入样例:

9 14
1 2
1 3
1 4
2 3
3 4
4 5
4 6
5 6
5 7
5 8
6 7
6 8
7 8
7 9
3 3 4 9

输出样例:

Cc(3)=0.47
Cc(4)=0.62
Cc(9)=0.35

思路

我们先把所有的边 先用并查集 并进去 再查找 判断一下 是不是连通图

如果不是 对于每个点的询问 直接输出 0.00 就可以了

然后 如果是 连通图的话

我们就从 那个点开始
BFS

对于每层 访问到的点 都权值 都加上 当前层数 就是这个点 到中心点的距离

AC代码

  1. #include <cstdio>
  2. #include <cstring>
  3. #include <ctype.h>
  4. #include <cstdlib>
  5. #include <cmath>
  6. #include <climits>
  7. #include <ctime>
  8. #include <iostream>
  9. #include <algorithm>
  10. #include <deque>
  11. #include <vector>
  12. #include <queue>
  13. #include <string>
  14. #include <map>
  15. #include <stack>
  16. #include <set>
  17. #include <numeric>
  18. #include <sstream>
  19. #include <iomanip>
  20. #include <limits>
  21. #define CLR(a) memset(a, 0, sizeof(a))
  22. #define pb push_back
  23. using namespace std;
  24. typedef long long ll;
  25. typedef long double ld;
  26. typedef unsigned long long ull;
  27. typedef pair <int, int> pii;
  28. typedef pair <ll, ll> pll;
  29. typedef pair<string, int> psi;
  30. typedef pair<string, string> pss;
  31. const double PI = 3.14159265358979323846264338327;
  32. const double E = exp(1);
  33. const double eps = 1e-30;
  34. const int INF = 0x3f3f3f3f;
  35. const int maxn = 1e4 + 5;
  36. const int MOD = 1e9 + 7;
  37. vector <int> G[maxn];
  38. int pre[maxn];
  39. int find(int x)
  40. {
  41. while (x != pre[x])
  42. x = pre[x];
  43. return x;
  44. }
  45. void join(int x, int y)
  46. {
  47. int fx = find(x), fy = find(y);
  48. if (x != fy)
  49. pre[fx] = fy;
  50. }
  51. queue <int> q;
  52. int v[maxn];
  53. int tot;
  54. void bfs(int cur)
  55. {
  56. int len = q.size();
  57. for (int i = 0; i < len; i++)
  58. {
  59. int num = q.front();
  60. q.pop();
  61. vector <int>::iterator it;
  62. for (it = G[num].begin(); it != G[num].end(); it++)
  63. {
  64. if (v[(*it)] == 0)
  65. {
  66. q.push(*it);
  67. tot += cur;
  68. v[(*it)] = 1;
  69. }
  70. }
  71. }
  72. if (q.size())
  73. bfs(cur + 1);
  74. }
  75. void init()
  76. {
  77. for (int i = 0; i < maxn; i++)
  78. pre[i] = i;
  79. }
  80. int main()
  81. {
  82. init();
  83. int n, m;
  84. scanf("%d%d", &n, &m);
  85. int x, y;
  86. for (int i = 0; i < m; i++)
  87. {
  88. scanf("%d%d", &x, &y);
  89. G[x].pb(y);
  90. G[y].pb(x);
  91. join(x, y);
  92. }
  93. int flag = 1;
  94. int vis = find(1);
  95. for (int i = 2; i <= n; i++)
  96. {
  97. if (find(i) != vis)
  98. {
  99. flag = 0;
  100. break;
  101. }
  102. }
  103. if (flag == 0)
  104. {
  105. int k, num;
  106. scanf("%d", &k);
  107. for (int i = 0; i < k; i++)
  108. {
  109. scanf("%d", &num);
  110. printf("Cc(%d)=0.00\n", num);
  111. }
  112. }
  113. else
  114. {
  115. int k, num;
  116. scanf("%d", &k);
  117. for (int i = 0; i < k; i++)
  118. {
  119. scanf("%d", &num);
  120. CLR(v);
  121. while (!q.empty())
  122. q.pop();
  123. q.push(num);
  124. v[num] = 1;
  125. tot = 0;
  126. bfs(1);
  127. double ans = (n - 1) * 1.0 / tot;
  128. printf("Cc(%d)=%.2lf\n", num, ans);
  129. }
  130. }
  131. }

转载于:https://www.cnblogs.com/Dup4/p/9433181.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/677402
推荐阅读
  

闽ICP备14008679号