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;
}
上一篇:构建基于Electron开发的软件遇到的问题


下一篇:Linux下安装、配置、启动Apache