【未完成】【笨方法学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 (≤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

二、题目大意

如果一个团队的人数大于2并且总通话量大于给定值,那么这个团队就是一个gang,并且gang里面单人通话量最多的人是head,题目会给出通话关系,要求找出所有的head。

三、考点

Dijkstra

四、注意

1、注意string到int的映射;

2、DFS遍历团伙,参考:https://www.liuchuo.net/archives/2331;

五、代码

#include
#include
#include
#define N 20010
#define INF 999999
using namespace std;
int e[N][N], dis[N];
bool visit[N];
int main() {
	//read
	fill(e[0], e[0] + N * N, INF);
	int n, m, k, ds;
	cin >> n >> m >> k >> ds;
	for (int i = 0; i < k; ++i) {
		string s1, s2;
		int a,b,c;
		cin >> s1 >> s2 >> c;
		if (s1[0] == 'G') {
			s1 = s1.substr(1);
			a = stoi(s1)+n;
		}
		else
			a = stoi(s1);
			
		if (s2[0] == 'G') {
			s2 = s2.substr(1);
			b = stoi(s2)+n;
		}
		else
			b = stoi(s2);
		e[a][b] = e[b][a] = c;
	}


	//dijkstra
	int out_id = -1;
	double out_dis = -1, out_avg = INF;
	for (int index = n + 1; index <= n + m; ++index) {
		fill(dis, dis + 1020, INF);
		fill(visit, visit + 1020, false);
		dis[index] = 0;
		//find the min
		for (int i = 1; i <= n + m; ++i) {
			int u = -1, mmin = INF;
			for (int j = 1; j <= n + m ; ++j) {
				if (visit[j] == false && dis[j] < mmin) {
					u = j;
					mmin = dis[j];
				}
			}
			if (u == -1)
				break;

			//relax
			visit[u] = true;
			for (int j = 1; j <= n + m; ++j) {
				if (visit[j] == false && dis[j] > dis[u] + e[u][j])
					dis[j] = dis[u] + e[u][j];
			}
		}

		//find the min and avg
		double min_dis = INF, total_dis=0;
		bool flag_suit = true;
		for (int j = 1; j <= n; ++j) {
			if (dis[j] > ds) {
				flag_suit = false;
				break;
			}
			if (dis[j] < min_dis)
				min_dis = dis[j];
			total_dis += 1.0 * dis[j];
		}

		if (flag_suit == false)
			continue;

		//find the output min
		double min_avg = total_dis / n;
		if (min_dis > out_dis || min_dis == out_dis && out_avg < min_avg) {
			out_avg = min_avg;
			out_id = index;
			out_dis = min_dis;
		}
	}

	//output
	if (out_id == -1) {
		cout << "No Solution" << endl;
	}
	else {
		printf("G%d\n%.1f %.1f\n", out_id - n, out_dis, out_avg);
	}

	system("pause");
	return 0;
}

你可能感兴趣的:(PAT,C,PAT甲级)