PAT 1072. Gas Station (30)
A gas station has to be built at such a location that the minimum distance between the station and any of the residential housing is as far away as possible. However it must guarantee that all the houses are in its service range.
Now given the map of the city and several candidate locations for the gas station, you are supposed to give the best recommendation. If there are more than one solution, output the one with the smallest average distance to all the houses. If such a solution is still not unique, output the one with the smallest index number.
Input Specification:
Each input file contains one test case. For each case, the first line contains 4 positive integers: N (<= 103), the total number of houses; M (<= 10), the total number of the candidate locations for the gas stations; K (<= 104), the number of roads connecting the houses and the gas stations; and DS, the maximum service range of the gas station. It is hence assumed that all the houses are numbered from 1 to N, and all the candidate locations are numbered from G1 to GM.
Then K lines follow, each describes a road in the format
P1 P2 Dist
where P1 and P2 are the two ends of a road which can be either house numbers or gas station numbers, and Dist is the integer length of the road.
Output Specification:
For each test case, print in the first line the index number of the best location. In the next line, print the minimum and the average distances between the solution and all the houses. The numbers in a line must be separated by a space and be accurate up to 1 decimal place. If the solution does not exist, simply output “No Solution”.
Sample Input 1:
4 3 11 5
1 2 2
1 4 2
1 G1 4
1 G2 3
2 3 2
2 G2 1
3 4 2
3 G3 2
4 G1 3
G2 G1 1
G3 G2 2
Sample Output 1:
G1
2.0 3.3
Sample Input 2:
2 1 2 10
1 G1 9
2 G1 20
Sample Output 2:
No Solution 此题不难,只是考察了最简单的Dijkstra算法,读清楚题意即可,代码如下:
#include<iostream>
#include<string>
#include<iomanip>
#include"stdio.h"
using namespace std; int N,M,K,Ds;
int **G; bool *collected;
int *dist; void Dijkstra(int);
int GetMinDist(); int main()
{
scanf("%d%d%d%d",&N,&M,&K,&Ds); //初始化G
G = new int* [N+M];
dist = new int [N+M];
collected = new bool [N+M];
for (int i=;i<N+M;i++)
{
G[i] = new int [N+M];
collected[i] = false;
dist[i] = ;
}
for (int i=;i<N+M;i++)
for (int j=;j<N+M;j++)
G[i][j] = ; int iP1,iP2;
string P1,P2;
int Dist; //开始输入道路信息
for (int i=;i<K;i++)
{
cin >> P1 >> P2 >> Dist;
if (P1[] == 'G')
{
P1.erase(P1.begin());
iP1 = atoi(P1.c_str())+N-;
}
else
iP1 = atoi(P1.c_str())-; if (P2[] == 'G')
{
P2.erase(P2.begin());
iP2 = atoi(P2.c_str())+N-;
}
else
iP2 = atoi(P2.c_str())-; G[iP1][iP2] = Dist;
G[iP2][iP1] = Dist;
} //开始Dijkstra
int mind=;
double averd=.;
bool flag_all = true;
int minG=-,mindd=-;
double averdd=-.; for (int i=N;i<N+M;i++) //对每一个G进行Dijkstra
{
Dijkstra(i);
//对dist[]进行扫描,找出最小和平均值,或者没有
for (int j=;j<N;j++)
{
averd += dist[j];
if (mind > dist[j])
mind = dist[j];
if (dist[j] > Ds)
{
flag_all = false;
break;
}
}
if (flag_all)
{
averd = averd / double(N);
if (mindd < mind)
{
mindd = mind;
minG=i;
averdd = averd;
}
else if (mindd == mind)
{
if (averdd > averd)
{
minG=i;
averdd = averd;
}
}
} //复原各变量
for (int j=;j<N+M;j++)
{
collected[j] = false;
dist[j] = ;
}
mind=;
averd=.;
flag_all = true;
} if (minG == -)
cout << "No Solution" << endl;
else
{
cout << 'G' << minG-N+ << endl;
cout << fixed << setprecision() << double(mindd) << ' ' << fixed << setprecision() << averdd << endl;
} return ;
} void Dijkstra(int S)
{
//初始化源节点
collected[S]=true;
dist[S]=; //初始化与S相邻的节点
for (int i=;i<N+M;i++)
{
if (G[S][i])
{
dist[i]=G[S][i];
}
} //开始贪心算法
int V;
while ()
{
V = GetMinDist();
if (V == -)
break;
collected[V]=true; for (int i=;i<N+M;i++)
{
if (!collected[i] && G[V][i] && dist[i] > dist[V]+G[V][i])
dist[i] = dist[V]+G[V][i];
}
}
} int GetMinDist()
{
int min_d = ,min_d_i=-; for (int i=;i<N+M;i++)
if (!collected[i] && dist[i] < min_d)
{
min_d = dist[i];
min_d_i = i;
}
return min_d_i;
}
PAT 1072. Gas Station (30)的更多相关文章
- pat 甲级 1072. Gas Station (30)
1072. Gas Station (30) 时间限制 200 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue A gas sta ...
- 1072. Gas Station (30)【最短路dijkstra】——PAT (Advanced Level) Practise
题目信息 1072. Gas Station (30) 时间限制200 ms 内存限制65536 kB 代码长度限制16000 B A gas station has to be built at s ...
- PAT 甲级 1072 Gas Station (30 分)(dijstra)
1072 Gas Station (30 分) A gas station has to be built at such a location that the minimum distance ...
- PAT 1072 Gas Station[图论][难]
1072 Gas Station (30)(30 分) A gas station has to be built at such a location that the minimum distan ...
- PAT Advanced 1072 Gas Station (30) [Dijkstra算法]
题目 A gas station has to be built at such a location that the minimum distance between the station an ...
- 1072. Gas Station (30)
先要求出各个加油站 最短的 与任意一房屋之间的 距离D,再在这些加油站中选出最长的D的加油站 ,该加油站 为 最优选项 (坑爹啊!).如果相同D相同 则 选离各个房屋平均距离小的,如果还是 相同,则 ...
- 1072. Gas Station (30) 多源最短路
A gas station has to be built at such a location that the minimum distance between the station and a ...
- 1072 Gas Station (30)(30 分)
A gas station has to be built at such a location that the minimum distance between the station and a ...
- PAT 1072. Gas Station
A gas station has to be built at such a location that the minimum distance between the station and a ...
随机推荐
- 奇淫绝技:Mysql报错注入利用总结分享
http://xxx.cn/qcwh/content/detail.php?id=330&sid=19&cid=261 and exists(select*from (select*f ...
- php知识案列1
用PHP,在1-20间随机产生5个不重复的值,如何做 复制代码 代码如下: <?php function NoRand($begin=0,$end=20,$limit=5){ $rand_arr ...
- 用于阻止div上的事件和div上的按钮的事件同时触发
event.stopPropagation() 阻止事件冒泡 用于ie11以上
- Oracle 游标
游标的简介 游标的概念 游标是从数据表中提取出来的数据,以临时表的形式存放在内存中,在游标中有一个数据指针,在初始状态下指向的是首记录,利用fetch语句可以移动该指针,从而对游标中的数据进行各种操作 ...
- 删除 https://tfs.visualstudio.com上的项目
比如注册的tfs地址为https://zhaobl.visualstudio.com,要删除的项目是 bushub 那么需要使用VS2013以上的 C:\Program Files (x86)\Mic ...
- Python 之路 Day5 - 常用模块学习
本节大纲: 模块介绍 time &datetime模块 random os sys shutil json & picle shelve xml处理 yaml处理 configpars ...
- Bootstrap <基础十八>面包屑导航(Breadcrumbs)
面包屑导航(Breadcrumbs)是一种基于网站层次信息的显示方式.以博客为例,面包屑导航可以显示发布日期.类别或标签.它们表示当前页面在导航层次结构内的位置. Bootstrap 中的面包屑导航( ...
- MD5使用
MD5加密算法,即"Message-Digest Algorithm 5(信息-摘要算法)",它由MD2.MD3.MD4发展而来的一种单向函数算法(也就是HASH算法),它是国际著 ...
- asp.net实现IHttpModule接口注意事项
IHttpModule向实现类提供模块初始化和处置事件. IHttpModule包含兩個方法: public void Init(HttpApplication context);public voi ...
- HttpServletResponse常用的方法
所有Servlet响应都实现ServletResponse接口.ServletResponse接口主要有以下方法: (1)从Servlet中可以通过getWriter方法取得PrintWriter对象 ...