UVA216

题目的意思就是给出这么多点,找出一种连接方式,是距离总和最小。(注意两个点间的距离孙万要加16,题目要求,不用深究)

做法就是就是枚举点的全排列,找出距离最小的。。


AC代码:

#include<iostream>
#include<algorithm>
#include<cmath>
#include<stdio.h>
using namespace std;

const int N = 200;
struct point {
	double x;
	double y;
};
int t;
int temp[N];
point p[N];
int fin[N];
double k[N];
double k2[N];
double res;
int T = 1;
double cul () {
	double f = 0;
	for (int i = 0 ; i < t - 1 ;i++) {
	k[i] = sqrt(pow(p[temp[i]].x - p[temp[i + 1]].x , 2) + pow(p[temp[i]].y - p[temp[i + 1]].y , 2)) + 16; 
	}
	for (int i = 0 ; i < t - 1; i++) {
		f += k[i];
	}
	return f;
}
int main () {
	while (cin >> t && t) {
		for (int i = 0 ; i < t ; i++) {
			cin >> p[i].x >> p[i].y;
			temp[i] = i;
		}
		double m = 100000000000;
		do {
			double flag = cul();
			if (flag < m) {
				m = flag;
				for (int i = 0 ; i < t ;i++) {
					fin[i] = temp[i];
					if (i != t - 1)
						k2[i] = k[i];
				}
			}
		}while(next_permutation(temp , temp + t));
		cout <<"**********************************************************" <<endl;
		cout <<"Network #"<<T++<<endl;
		for (int i = 0 ; i < t - 1 ;i++) {
			printf("Cable requirement to connect (%.0lf,%.0lf) to (%.0lf,%.0lf) is %.2lf feet.\n",p[fin[i]].x, p[fin[i]].y, p[fin[i + 1]].x, p[fin[i + 1]].y ,k2[i] );
		}
		printf("Number of feet of cable required is %.2lf.\n",m);
	}


	return 0 ;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值