zoj 1868 || UVA 10316 Airline Hub

134 篇文章 1 订阅
41 篇文章 0 订阅

这题卡精度啊。。伤不起。看来以后还是不要那么懒了。。

求在哪个飞机场建造个HUB使得所有飞机场到这个HUB最长距离最短。给的是大地坐标。
N才1000,枚举下就好了。
比较圆心角就好了,因为地球半径是一样的。
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <limits.h>
#include <string.h>
#include <string>
#include <algorithm>
#define MID(x,y) ( ( x + y ) >> 1 )
#define L(x) ( x << 1 )
#define R(x) ( x << 1 | 1 )
#define BUG puts("here!!!")

using namespace std;

const int MAX = 1010;
const double pi = acos(-1.0);
const double inf = 1e30;
struct point { double lng, lat, x,y;};
point p[MAX];
const double eps = 1e-6;
bool dy(double x,double y)	{	return x > y + eps;}	// x > y 
bool xy(double x,double y)	{	return x < y - eps;}	// x < y 
bool dyd(double x,double y)	{ 	return x > y - eps;}	// x >= y 
bool xyd(double x,double y)	{	return x < y + eps;} 	// x <= y 
bool dd(double x,double y) 	{	return fabs( x - y ) < eps;}  // x == y
double torad(double x)
{
	return x*pi/180;
}
double angle_3d(double lng1, double lat1, double lng2, double lat2)  
{           //经度,纬度,经度,纬度   
    return acos(cos(lat1)*cos(lat2)*cos(lng1 - lng2) + sin(lat1)*sin(lat2));  
}  

double dis(int k,int i)
{
	double ang = angle_3d(p[i].lng, p[i].lat, p[k].lng, p[k].lat);
	return ang;
}
int solve(int n)
{
	double mmin = inf;
	int t;
	
	for(int i=0; i<n; i++)
	{
		double mmax = 0;
		for(int k=0; k<n; k++)
		{
			if( k == i ) continue;
			if( dy(dis(k,i), mmax) )
				mmax = dis(k,i);
		}
		if( xyd(mmax, mmin) )
		{
			mmin = mmax;
			t = i;
		}
	}
	return t;
}

int main()
{
	int n;
	double x, y;

	while( ~scanf("%d", &n) )
	{
		for(int i=0; i<n; i++)
		{
			scanf("%lf %lf", &x, &y);
			p[i].lat = torad(x);
			p[i].lng = torad(y);
			p[i].x = x; p[i].y = y;
		}
		
		int ans = solve(n);
		
		printf("%.2lf %.2lf\n", p[ans].x, p[ans].y);
	}
	
return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值