poj 3714 Raid (类型不同点间的最近点对)

 http://poj.org/problem?id=3714

 

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

struct point
{
	long long x, y;
	bool flag;
};
point p[200003];
point tp[200003];

bool cmp_x(const point & a, const point & b) { return a.x < b.x; }

bool cmp_y(const point & a, const point & b) { return a.y < b.y; }

double min(double a, double b) { return a < b ? a : b; }

double dis(const point & a, const point & b)
{
	if(a.flag == b.flag) return 1e12;  //将类型相同的点之间的距离设为无穷大

	return sqrt((double)((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y)));
}

double solve(int lf, int rt, int n)  //left, right
{
	if(lf == rt) return 1e12;  //只有一个点时,距离设为无穷大
	if(rt - lf == 1)
		return dis(p[lf], p[rt]);

	int mid = (lf + rt) >> 1;
	double ans = min(solve(lf, mid, n), solve(mid + 1, rt, n));

	int lp = 0, i, j;
	for(i = mid; i >= lf && p[i].x - p[mid].x < ans; i--)
	{
		tp[lp].x = p[i].x;
		tp[lp].y = p[i].y;
		tp[lp++].flag = p[i].flag;
	}

	for(i = mid + 1; i <= rt && p[i].x - p[mid].x < ans; i++)
	{
		tp[lp].x = p[i].x;
		tp[lp].y = p[i].y;
		tp[lp++].flag = p[i].flag;
	}

	sort(tp, tp + lp, cmp_y);

	for(i = 0; i < lp; i++)
		for(j = i + 1; j - i < 7 && j < lp; j++)
			ans = min(ans, dis(tp[i], tp[j]));

	return ans;
}

int main()
{
	int n, i, t;
	cin >> t;
	while(t--)
	{
		scanf("%d", &n);
		for(i = 1; i <= n; i++)
		{
			p[i].flag = true;
			scanf("%I64d%I64d", &p[i].x, &p[i].y);
		}

		for(i = n + 1; i <= 2 * n; i++)
		{
			p[i].flag = false;
			scanf("%I64d%I64d", &p[i].x, &p[i].y);
		}

		n += n;
		sort(p + 1, p + n + 1, cmp_x);
		printf("%.3lf\n", solve(1, n, n));
	}
	return 0;
}


 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值