求删点后最小的生成树,n<50.。。。数据好弱,直接暴力枚举就行。。。删点的时候直接g[i][j]=INF就行了。

  1. #include<iostream>
  2. #include<algorithm>
  3. #include<fstream>
  4. #include<string>
  5. #include<vector>
  6. #include<stack>
  7. #include<queue>
  8. #include<cstdio>
  9. #include<cstring>
  10. #include<cstdlib>
  11. #include<cmath>
  12. #include<map>
  13. #include<set>
  14. #define FF(i, a, b) for(i=a; i<b; i++)
  15. #define FD(i, a, b) for(i=a; i>b; i--)
  16. #define CLR(a, b) memset(a, b, sizeof(a))
  17. #define LL long long
  18. #define CPY(a, b) memcpy(a, b, sizeof(b))
  19. using namespace std;
  20. ofstream fout ("output.txt");
  21. ifstream fin ("input.txt");
  22.  
  23. const int maxn = 100;
  24. const double INF = 222222;
  25. int T, n;
  26. double g[maxn][maxn], low[maxn], x[maxn], y[maxn], tmp[maxn][maxn];
  27. bool vis[maxn];
  28.  
  29. double prim(int start)
  30. {
  31. double min, res=0;
  32. int i, j, pos;
  33. CLR(vis, 0);
  34. vis[start] = 1; pos = start;
  35. FF(i, 1, n+1) if(i!=pos) low[i] = g[pos][i];
  36. FF(i, 1, n)
  37. {
  38. min = INF;
  39. FF(j, 1, n+1)
  40. if(vis[j] == 0 && min > low[j])
  41. min = low[j], pos = j;
  42. res += min;
  43. vis[pos] = 1;
  44. FF(j, 1, n+1)
  45. if(vis[j] == 0 && low[j] > g[pos][j])
  46. low[j] = g[pos][j];
  47. }
  48. return res;
  49. }
  50.  
  51. int main()
  52. {
  53. scanf("%d", &T);
  54. while(T--)
  55. {
  56. int i, j;
  57. scanf("%d", &n);
  58. FF(i, 1, n+1) scanf("%lf%lf", &x[i], &y[i]);
  59. FF(i, 1, n+1)
  60. FF(j, 1, n+1)
  61. g[i][j] = sqrt((x[i]-x[j])*(x[i]-x[j]) + (y[i]-y[j])*(y[i]-y[j]));
  62. double ans = INF*INF;
  63. FF(i, 1, n+1)
  64. {
  65. CPY(tmp, g);
  66. FF(j, 1, n+1)
  67. {
  68. g[i][j] = g[j][i] = INF;
  69. }
  70. ans = min(ans, prim(1));
  71. CPY(g, tmp);
  72. }
  73. printf("%.2lf\n", n < 3 ? 0 : ans-INF);
  74. }
  75. return 0;
  76. }

hdu 3405 world islands的更多相关文章

  1. Poj 3771 hdu 3405

    poj 3771 http://poj.org/problem?id=3771 wiki Prim http://zh.wikipedia.org/wiki/%E6%99%AE%E6%9E%97%E5 ...

  2. hdu 3405 删掉某点后 求最小生成树

    给出N个点的坐标 边的权值为两点间的距离 删掉其中某点 求最小生成树的权值和 要求这权值最小 因为最多50个点 所以具体是删哪个点 用枚举假如有4个点 就要求4次最小生成树 分别是2 3 4 | 1 ...

  3. HDU 1668 Islands and Bridges

    Islands and Bridges Time Limit: 4000ms Memory Limit: 65536KB This problem will be judged on HDU. Ori ...

  4. HDU 4006The kth great number(K大数 +小顶堆)

    The kth great number Time Limit:1000MS     Memory Limit:65768KB     64bit IO Format:%I64d & %I64 ...

  5. HDU 4738 Caocao's Bridges(Tarjan求桥+重边判断)

    Caocao's Bridges Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) ...

  6. hdu 2112 (最短路+map)

    链接:http://acm.hdu.edu.cn/showproblem.php?pid=2112 HDU Today Time Limit: 15000/5000 MS (Java/Others)  ...

  7. HDU 4280 Island Transport(网络流)

    转载请注明出处:http://blog.csdn.net/u012860063 题目链接:pid=4280">http://acm.hdu.edu.cn/showproblem.php ...

  8. HDU 4280 Island Transport(网络流,最大流)

    HDU 4280 Island Transport(网络流,最大流) Description In the vast waters far far away, there are many islan ...

  9. HDU 5643 King's Game 打表

    King's Game 题目连接: http://acm.hdu.edu.cn/showproblem.php?pid=5643 Description In order to remember hi ...

随机推荐

  1. poll调用深入解析

    poll调用深入解析http://blog.csdn.net/zmxiangde_88/article/details/8099049 poll调用和select调用实现的功能一样,都是网络IO利用的 ...

  2. SharePoint 2013的100个新功能之搜索(二)

    一:名称建议 人员搜索中新的“名称建议”功能,微软引入了一种简单.直观的方式来根据名称找到用户.输入一个或多个字符,查看全部以其开头的名称,在所有的用户描述数据库都可用,在人员索引中也因此一样可用.该 ...

  3. Spark SQL 源代码分析之 In-Memory Columnar Storage 之 in-memory query

    /** Spark SQL源代码分析系列文章*/ 前面讲到了Spark SQL In-Memory Columnar Storage的存储结构是基于列存储的. 那么基于以上存储结构,我们查询cache ...

  4. 关于Get和Post

    get和post 简介: Get和post是表单提交数据的两种基本方式,get请求数据通过域名后缀url传送,用户可见,不安全,post请求数据通过在请求报文正文里传输,相对比较安全. get是通过u ...

  5. 开源数据库连接池之C3P0

    本篇介绍几种开源数据库连接池,同时重点讲述如何使用C3P0数据库连接池. 之前的博客已经重点讲述了使用数据库连接池的好处,即是将多次创建连接转变为一次创建而使用长连接模式.这样能减少数据库创建连接的消 ...

  6. 转:python idle 清屏问题的解决

    http://www.cnblogs.com/maybego/p/3234055.html python idle 清屏问题的解决 在学习和使用python的过程中,少不了要与python idle打 ...

  7. FindLetter 类——查找文件中特定的字符,每一行开头为某一个字符,则跳过

    /*统计除了>之外的行里面CHED四个字母总数*/ #include<fstream> #include<iostream> #include<cstring> ...

  8. jqueryui datepicker refresh

    http://stackoverflow.com/questions/6056287/jquery-ui-datepicker-prevent-refresh-onselect 给选中的TD加背景色

  9. Selenium Webdriver ie 浏览器

    webDriver 在测试ie 的时候会遇到很多的问题,记录下: 1.需要ie的driver驱动 需要下载 IEDriverServer.exe 并把这个驱动放在系统ie 的文件夹下 C:\Progr ...

  10. delphi实现图象灰度处理的3种方法

    灰度处理的方法主要有如下3种: 1.最大值法:使R.G.B的值等于3值中最大的一个,即:   R=G=B=max(R,G,B) 最大值法会使形成高亮度很高的灰度图象 var bitmap:tbitma ...