Qin Shi Huang's National Road System

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3843    Accepted Submission(s): 1336

Problem Description
During the Warring States Period of ancient China(476 BC to 221 BC), there were seven kingdoms in China ---- they were Qi, Chu, Yan, Han, Zhao, Wei and Qin. Ying Zheng was the king of the kingdom Qin. Through 9 years of wars, he finally conquered all six other kingdoms and became the first emperor of a unified China in 221 BC. That was Qin dynasty ---- the first imperial dynasty of China(not to be confused with the Qing Dynasty, the last dynasty of China). So Ying Zheng named himself "Qin Shi Huang" because "Shi Huang" means "the first emperor" in Chinese.

Qin Shi Huang undertook gigantic projects, including the first version of the Great Wall of China, the now famous city-sized mausoleum guarded by a life-sized Terracotta Army, and a massive national road system. There is a story about the road system:
There were n cities in China and Qin Shi Huang wanted them all be connected by n-1 roads, in order that he could go to every city from the capital city Xianyang.
Although Qin Shi Huang was a tyrant, he wanted the total length of all roads to be minimum,so that the road system may not cost too many people's life. A daoshi (some kind of monk) named Xu Fu told Qin Shi Huang that he could build a road by magic and that magic road would cost no money and no labor. But Xu Fu could only build ONE magic road for Qin Shi Huang. So Qin Shi Huang had to decide where to build the magic road. Qin Shi Huang wanted the total length of all none magic roads to be as small as possible, but Xu Fu wanted the magic road to benefit as many people as possible ---- So Qin Shi Huang decided that the value of A/B (the ratio of A to B) must be the maximum, which A is the total population of the two cites connected by the magic road, and B is the total length of none magic roads.
Would you help Qin Shi Huang?
A city can be considered as a point, and a road can be considered as a line segment connecting two points.
 
Input
The first line contains an integer t meaning that there are t test cases(t <= 10).
For each test case:
The first line is an integer n meaning that there are n cities(2 < n <= 1000).
Then n lines follow. Each line contains three integers X, Y and P ( 0 <= X, Y <= 1000, 0 < P < 100000). (X, Y) is the coordinate of a city and P is the population of that city.
It is guaranteed that each city has a distinct location.
 
Output
For each test case, print a line indicating the above mentioned maximum ratio A/B. The result should be rounded to 2 digits after decimal point.
 
Sample Input
2
4
1 1 20
1 2 30
200 2 80
200 1 100
3
1 1 20
1 2 30
2 2 40
 
Sample Output
65.00
70.00
 
Source
 
 
代码:
       n个城市,求解max{ A/b } b为次小生成树!  
 //#define LOCAL
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<algorithm>
using namespace std;
const int maxn=;
const int inf=0x3f3f3f3f;
struct node
{
int x,y,p;
double dist(const node &cc){
return sqrt((double)(x-cc.x)*(x-cc.x)+(y-cc.y)*(y-cc.y));
}
}sac[maxn]; bool vis[maxn];
bool road[maxn][maxn];
int pre[maxn];
double maxc[maxn][maxn];
double lowcost[maxn];
double map[maxn][maxn];
double res;
void prim(int st,int en){ memset(vis,,sizeof(vis));
memset(road,,sizeof(road));
memset(maxc,,sizeof maxc);
for(int i=;i<en;i++){
lowcost[i]=map[st][i];
pre[i]=st;;
}
vis[st]=;
res=;
for(int i=;i<en;i++)
{
double larger=inf;
int pp=-;
for(int j=;j<en;j++)
{
if(!vis[j]&&larger>lowcost[j])
{
larger=lowcost[j];
pp=j;
}
}
if(-==pp)continue;
road[pp][pre[pp]]=road[pre[pp]][pp]=;
res+=lowcost[pp];
vis[pp]=;
for(int i=;i<en;i++)
{ if(!vis[i]&&lowcost[i]>map[pp][i]){
lowcost[i]=map[pp][i];
pre[i]=pp;
}
//求解生成树的最大边
if(vis[i]&&i!=pp){
maxc[i][pp]=maxc[pp][i]=max(maxc[i][pre[pp]],lowcost[pp]);
}
}
}
return ;
} int main()
{
#ifdef LOCAL
freopen("test.in","r",stdin);
#endif
int tt,nn;
scanf("%d",&tt);
while(tt--){
scanf("%d",&nn);
// memset(map,0,sizeof(map));
for(int i=;i<nn;i++){
scanf("%d%d%d",&sac[i].x,&sac[i].y,&sac[i].p);
map[i][i]=;
for(int j=i-;j>=;--j){
map[i][j]=map[j][i]=sac[i].dist(sac[j]);
}
}
prim(,nn);
double ans=0.0;
for(int i=;i<nn;i++){
for(int j=;j<nn;j++){
if(i!=j)
{
double tol_p=sac[i].p+sac[j].p;
if(road[i][j])
ans=max(tol_p/(res-map[i][j]),ans);
else
ans=max(tol_p/(res-maxc[i][j]),ans);
}
}
}
printf("%.2lf\n",ans);
}
return ;
}

最新文章

  1. 解决Unity5+Vuforia+Network本地联机发布到Android上白屏的问题
  2. flask+sqlite3+echarts3+ajax 异步更新数据
  3. HDU 1175 连连看
  4. memcache、memcached、groupcache的区别
  5. 学习JAVA第一部分总结
  6. shell中timeout实现
  7. Windows Phone 8.1 应用生命周期
  8. 最新手机号正则表达式 java 、javascript版正则表达式验证是否为11位有效手机号码
  9. 请求http页面的相关过程
  10. 利用 awk 统计nginx 中某一个用户的访问次数
  11. vb.net 数字大写
  12. TensorFlow实战Google深度学习框架1-4章学习笔记
  13. iOS之关于Architectures设置及Build Active Architecture Only编译设置
  14. zzw原创_非root用户启动apache的问题解决(非root用户启动apache的1024以下端口)
  15. Docker之数据卷Volume(七)
  16. jQuery Ajax -附示例
  17. tmux 基本用法
  18. php求取时间范围并传入数据库,页面上显示几天几月几年
  19. [Java] 各种流的分类及区别
  20. c# 多个事件公用一个相应方法判断事件来源

热门文章

  1. UVA 10163 十六 Storage Keepers
  2. Python串口编程
  3. C# Ini配置文件
  4. __declspec关键字详细用法
  5. hdu 1217 (Floyd变形)
  6. hdu 1874(Dijkstra + Floyd)
  7. C# 线程(一)
  8. js问的我醉的不要不要的。
  9. jsonp实现原理详细介绍
  10. C# ?(问号)的三个用处(转载)