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)的更多相关文章

  1. pat 甲级 1072. Gas Station (30)

    1072. Gas Station (30) 时间限制 200 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue A gas sta ...

  2. 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 ...

  3. 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 ...

  4. PAT 1072 Gas Station[图论][难]

    1072 Gas Station (30)(30 分) A gas station has to be built at such a location that the minimum distan ...

  5. 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 ...

  6. 1072. Gas Station (30)

    先要求出各个加油站 最短的 与任意一房屋之间的 距离D,再在这些加油站中选出最长的D的加油站 ,该加油站 为 最优选项 (坑爹啊!).如果相同D相同 则 选离各个房屋平均距离小的,如果还是 相同,则 ...

  7. 1072. Gas Station (30) 多源最短路

    A gas station has to be built at such a location that the minimum distance between the station and a ...

  8. 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 ...

  9. PAT 1072. Gas Station

    A gas station has to be built at such a location that the minimum distance between the station and a ...

随机推荐

  1. mysql 查询数据库表结构

    1. mysql> describe tmp_log; +----------+------------------+------+-----+---------+--------------- ...

  2. eclipse启动报错java.lang.IllegalStateException: LifecycleProcessor not initialized - call 'refresh' befo

    报错: java.lang.IllegalStateException: LifecycleProcessor not initialized - call 'refresh' before invo ...

  3. CSS3的@keyframes用法详解:

    CSS3的@keyframes用法详解:此属性与animation属性是密切相关的,关于animation属性可以参阅CSS3的animation属性用法详解一章节. 一.基本知识:keyframes ...

  4. Kettle6.0安装及问题总结-白痴教程

    1.安装JDK 配置java环境变量 2.安装KETTLE: 官方下载地址:http://community.pentaho.com/projects/data-integration/ 下载完后,解 ...

  5. js判断数组

    1.constructor 在W3C定义中的定义:constructor 属性返回对创建此对象的数组函数的引用 就是返回对象相对应的构造函数.从定义上来说跟instanceof不太一致,但效果都是一样 ...

  6. hibernate入门实例

    1. 环境配置 1.1 hiberante环境配置 hibernate可实现面向对象的数据存储.hibernate的官网:http://hibernate.org/ 官网上选择hibernate OR ...

  7. JAVA动手动脑异常处理

    1>请阅读并运行AboutException.java示例,然后通过后面的几页PPT了解Java中实现异常处理的基础知识. import javax.swing.*; class AboutEx ...

  8. 更改星级评分条 RatingBar 的样式

    1.首先在布局中引用星级评分条: <RatingBar            android:id="@+id/room_ratingbar"            styl ...

  9. k8s volume

        只有nfs和rbd的,本人翻译确实很渣         在容器中磁盘文件寿命是短暂的,当在容器中运行一些重要程序时,这会产生一些问题. 首先,当一个容器崩溃后,kubelet将重新启动该容器, ...

  10. XCode修改公司名称和作者名称

    新建的文件最上方都会有一段类似如下的版权声明 // //  ViewController.m //  CBDemoProject001 // //  Created by CB on 16/3/17. ...