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 (<= 10^3^), the total number of houses; M (<= 10), the total number of the candidate locations for the gas stations; K (<= 10^4^), the number of roads connecting the houses and the gas stations; and D~S~, 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
中途有个判断条件写错了总是有个点 不对,好蠢,station之间的距离可以可以超过range范围,判断的时候只需要判断house,啊。。。好蠢。n个house 1~n,station 1~m加到n后面,总的进行最短路
dijkstra,然后判断,取优。 代码:
#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
#include <map>
#define inf 0x3f3f3f3f
#define MAX 2020
using namespace std;
int n,m,k,ds,d,mp[MAX][MAX],dis[MAX];
int vis[MAX];
char s1[],s2[];
int id,ma,sum;
int change(char *temp) {
int su = ,i = ,j = ;
if(temp[] == 'G') {
i ++;
j += n;
}
while(temp[i]) {
su = su * + temp[i ++] - '';
}
return su + j;
}
void dijkstra() {
for(int i = n + ;i <= n + m;i ++) {
memset(vis,,sizeof(vis));
int tsum = ,tma = ,flag = ;
for(int j = ;j <= n + m;j ++) {
dis[j] = mp[i][j];
}
while() {
int t = -,mi = inf;
for(int j = ;j <= n + m;j ++) {
if(!vis[j] && dis[j] < mi){
t = j,mi = dis[j];
}
}
if(t == -)break;
if(t <= n) {
if(dis[t] > ds || !tsum && dis[t] < ma) {
flag = ;
break;
}
else if(!tsum)tma = dis[t];
tsum += dis[t];
}
vis[t] = ;
for(int j = ;j <= n + m;j ++) {
if(vis[j] || mp[t][j] == inf)continue;
if(dis[t] + mp[t][j] < dis[j])dis[j] = dis[t] + mp[t][j];
}
}
if(!flag)continue;
if(tma > ma) {
id = i;
ma = tma;
sum = tsum;
}
else if(tsum < sum) {
sum = tsum;
id = i;
}
}
}
int main() {
scanf("%d%d%d%d",&n,&m,&k,&ds);
for(int i = ;i <= n + m;i ++) {
for(int j = ;j <= n + m;j ++) {
mp[i][j] = inf;
}
mp[i][i] = ;
}
for(int i = ;i < k;i ++) {
scanf("%s%s%d",s1,s2,&d);
int x = change(s1),y = change(s2);
mp[x][y] = mp[y][x] = d;
}
dijkstra();
if(!id)printf("No Solution");
else printf("G%d\n%.1f %.1f",id - n,(double)ma,(double)sum / (double)n);
}

最新文章

  1. node-sass报错解决方法
  2. iOS用的aes
  3. MyBatis基于注解的动态SQL——概览
  4. 20150912华为机考2之&quot;输入一段字符串(英文),将每个单词首字母大写后输出&quot;
  5. rsync增量传输大文件优化技巧
  6. ant非法字符:\65279 错误
  7. 【BZOJ 1013】 [JSOI2008]球形空间产生器sphere
  8. C#面向对象的学习笔记
  9. Android应用资源的分类和存储
  10. DEP受保护的问题(尤其是Outlook)
  11. jquery 调用wcf 的SOA架构,将三层架构运用到SOA的架构中来(第四天)
  12. WNDCLASS 窗口类结构
  13. [译]ASP.NET Core 2.0 机密配置项
  14. Asp.Net Core使用SignalR进行服务间调用
  15. Linux删除文件夹和修改文件名
  16. Java -- JDBC 学习--通过 ResultSet 执行查询操作
  17. utf8.php
  18. 使用/dev/uinput的简要介绍(含demo程序)【转】
  19. 【转】HttpHandler的认识与加深理解
  20. python经典书记必读:Python编程快速上手 让繁琐工作自动化

热门文章

  1. [Java开发之路](23)装箱与拆箱
  2. Spring学习九----------Bean的配置之Bean的定义及作用域的注解实现
  3. Jquery 常用方法总结
  4. golang 内存池
  5. 常用yum命令小结
  6. maven nexus 搭建
  7. PeekMessage究竟做了什么?
  8. alibaba canal安装笔记
  9. HttpClient 访问 https 出现peer can&#39;t
  10. Eclipse如何删除插件