hdu 3405 world islands
求删点后最小的生成树,n<50.。。。数据好弱,直接暴力枚举就行。。。删点的时候直接g[i][j]=INF就行了。
- #include<iostream>
- #include<algorithm>
- #include<fstream>
- #include<string>
- #include<vector>
- #include<stack>
- #include<queue>
- #include<cstdio>
- #include<cstring>
- #include<cstdlib>
- #include<cmath>
- #include<map>
- #include<set>
- #define FF(i, a, b) for(i=a; i<b; i++)
- #define FD(i, a, b) for(i=a; i>b; i--)
- #define CLR(a, b) memset(a, b, sizeof(a))
- #define LL long long
- #define CPY(a, b) memcpy(a, b, sizeof(b))
- using namespace std;
- ofstream fout ("output.txt");
- ifstream fin ("input.txt");
- const int maxn = 100;
- const double INF = 222222;
- int T, n;
- double g[maxn][maxn], low[maxn], x[maxn], y[maxn], tmp[maxn][maxn];
- bool vis[maxn];
- double prim(int start)
- {
- double min, res=0;
- int i, j, pos;
- CLR(vis, 0);
- vis[start] = 1; pos = start;
- FF(i, 1, n+1) if(i!=pos) low[i] = g[pos][i];
- FF(i, 1, n)
- {
- min = INF;
- FF(j, 1, n+1)
- if(vis[j] == 0 && min > low[j])
- min = low[j], pos = j;
- res += min;
- vis[pos] = 1;
- FF(j, 1, n+1)
- if(vis[j] == 0 && low[j] > g[pos][j])
- low[j] = g[pos][j];
- }
- return res;
- }
- int main()
- {
- scanf("%d", &T);
- while(T--)
- {
- int i, j;
- scanf("%d", &n);
- FF(i, 1, n+1) scanf("%lf%lf", &x[i], &y[i]);
- FF(i, 1, n+1)
- FF(j, 1, n+1)
- g[i][j] = sqrt((x[i]-x[j])*(x[i]-x[j]) + (y[i]-y[j])*(y[i]-y[j]));
- double ans = INF*INF;
- FF(i, 1, n+1)
- {
- CPY(tmp, g);
- FF(j, 1, n+1)
- {
- g[i][j] = g[j][i] = INF;
- }
- ans = min(ans, prim(1));
- CPY(g, tmp);
- }
- printf("%.2lf\n", n < 3 ? 0 : ans-INF);
- }
- return 0;
- }
hdu 3405 world islands的更多相关文章
- 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 ...
- hdu 3405 删掉某点后 求最小生成树
给出N个点的坐标 边的权值为两点间的距离 删掉其中某点 求最小生成树的权值和 要求这权值最小 因为最多50个点 所以具体是删哪个点 用枚举假如有4个点 就要求4次最小生成树 分别是2 3 4 | 1 ...
- HDU 1668 Islands and Bridges
Islands and Bridges Time Limit: 4000ms Memory Limit: 65536KB This problem will be judged on HDU. Ori ...
- HDU 4006The kth great number(K大数 +小顶堆)
The kth great number Time Limit:1000MS Memory Limit:65768KB 64bit IO Format:%I64d & %I64 ...
- HDU 4738 Caocao's Bridges(Tarjan求桥+重边判断)
Caocao's Bridges Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) ...
- hdu 2112 (最短路+map)
链接:http://acm.hdu.edu.cn/showproblem.php?pid=2112 HDU Today Time Limit: 15000/5000 MS (Java/Others) ...
- HDU 4280 Island Transport(网络流)
转载请注明出处:http://blog.csdn.net/u012860063 题目链接:pid=4280">http://acm.hdu.edu.cn/showproblem.php ...
- HDU 4280 Island Transport(网络流,最大流)
HDU 4280 Island Transport(网络流,最大流) Description In the vast waters far far away, there are many islan ...
- HDU 5643 King's Game 打表
King's Game 题目连接: http://acm.hdu.edu.cn/showproblem.php?pid=5643 Description In order to remember hi ...
随机推荐
- poll调用深入解析
poll调用深入解析http://blog.csdn.net/zmxiangde_88/article/details/8099049 poll调用和select调用实现的功能一样,都是网络IO利用的 ...
- SharePoint 2013的100个新功能之搜索(二)
一:名称建议 人员搜索中新的“名称建议”功能,微软引入了一种简单.直观的方式来根据名称找到用户.输入一个或多个字符,查看全部以其开头的名称,在所有的用户描述数据库都可用,在人员索引中也因此一样可用.该 ...
- Spark SQL 源代码分析之 In-Memory Columnar Storage 之 in-memory query
/** Spark SQL源代码分析系列文章*/ 前面讲到了Spark SQL In-Memory Columnar Storage的存储结构是基于列存储的. 那么基于以上存储结构,我们查询cache ...
- 关于Get和Post
get和post 简介: Get和post是表单提交数据的两种基本方式,get请求数据通过域名后缀url传送,用户可见,不安全,post请求数据通过在请求报文正文里传输,相对比较安全. get是通过u ...
- 开源数据库连接池之C3P0
本篇介绍几种开源数据库连接池,同时重点讲述如何使用C3P0数据库连接池. 之前的博客已经重点讲述了使用数据库连接池的好处,即是将多次创建连接转变为一次创建而使用长连接模式.这样能减少数据库创建连接的消 ...
- 转:python idle 清屏问题的解决
http://www.cnblogs.com/maybego/p/3234055.html python idle 清屏问题的解决 在学习和使用python的过程中,少不了要与python idle打 ...
- FindLetter 类——查找文件中特定的字符,每一行开头为某一个字符,则跳过
/*统计除了>之外的行里面CHED四个字母总数*/ #include<fstream> #include<iostream> #include<cstring> ...
- jqueryui datepicker refresh
http://stackoverflow.com/questions/6056287/jquery-ui-datepicker-prevent-refresh-onselect 给选中的TD加背景色
- Selenium Webdriver ie 浏览器
webDriver 在测试ie 的时候会遇到很多的问题,记录下: 1.需要ie的driver驱动 需要下载 IEDriverServer.exe 并把这个驱动放在系统ie 的文件夹下 C:\Progr ...
- delphi实现图象灰度处理的3种方法
灰度处理的方法主要有如下3种: 1.最大值法:使R.G.B的值等于3值中最大的一个,即: R=G=B=max(R,G,B) 最大值法会使形成高亮度很高的灰度图象 var bitmap:tbitma ...