【Codeforces Round 340 (Div 2)C】【暴力排序枚举】Watering Flowers 2个灌溉器灌溉所有点最小的rr+RR

C. Watering Flowers
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

A flowerbed has many flowers and two fountains.

You can adjust the water pressure and set any values r1(r1 ≥ 0) and r2(r2 ≥ 0), giving the distances at which the water is spread from the first and second fountain respectively. You have to set such r1 and r2 that all the flowers are watered, that is, for each flower, the distance between the flower and the first fountain doesn't exceed r1, or the distance to the second fountain doesn't exceed r2. It's OK if some flowers are watered by both fountains.

You need to decrease the amount of water you need, that is set such r1 and r2 that all the flowers are watered and the r12 + r22 is minimum possible. Find this minimum value.

Input

The first line of the input contains integers nx1y1x2y2 (1 ≤ n ≤ 2000 - 107 ≤ x1, y1, x2, y2 ≤ 107) — the number of flowers, the coordinates of the first and the second fountain.

Next follow n lines. The i-th of these lines contains integers xi and yi ( - 107 ≤ xi, yi ≤ 107) — the coordinates of thei-th flower.

It is guaranteed that all n + 2 points in the input are distinct.

Output

Print the minimum possible value r12 + r22. Note, that in this problem optimal answer is always integer.

Examples
input
2 -1 0 5 3
0 2
5 2
output
6
input
4 0 0 5 0
9 4
8 3
-1 0
1 4
output
33
Note

The first sample is (r12 = 5r22 = 1):The second sample is (r12 = 1r22 = 32):

#include<stdio.h>
#include<iostream>
#include<string.h>
#include<string>
#include<ctype.h>
#include<math.h>
#include<set>
#include<map>
#include<vector>
#include<queue>
#include<bitset>
#include<algorithm>
#include<time.h>
using namespace std;
void fre() { freopen("c://test//input.in", "r", stdin); freopen("c://test//output.out", "w", stdout); }
#define MS(x,y) memset(x,y,sizeof(x))
#define MC(x,y) memcpy(x,y,sizeof(x))
#define MP(x,y) make_pair(x,y)
#define ls o<<1
#define rs o<<1|1
typedef long long LL;
typedef unsigned long long UL;
typedef unsigned int UI;
template <class T1, class T2>inline void gmax(T1 &a, T2 b) { if (b>a)a = b; }
template <class T1, class T2>inline void gmin(T1 &a, T2 b) { if (b<a)a = b; }
const int N = 2020, M = 0, Z = 1e9 + 7, ms63 = 0x3f3f3f3f;
int n;
LL X1, Y1, X2, Y2;
LL x[N], y[N];
LL K(LL x) { return x*x; }
LL check(LL r)
{
	r = r*r;
	LL R=0;
	for (int i = 1; i <= n; ++i)
	{
		if (K(x[i] - X1) + K(y[i] - Y1) <= r);
		else
		{
			gmax(R, K(x[i] - X2) + K(y[i] - Y2));
		}
	}
	return r+R;
}
struct A
{
	LL x, y, d, D;
	bool operator < (const A& b)const {
		return d < b.d;
	}
}a[N];
int main()
{
	while (~scanf("%d", &n))
	{
		scanf("%lld%lld%lld%lld", &X1,&Y1,&X2,&Y2);
		for (int i = 1; i <= n; ++i)
		{
			scanf("%lld%lld", &a[i].x, &a[i].y);
			a[i].d = K(a[i].x - X1) + K(a[i].y - Y1);
			a[i].D = K(a[i].x - X2) + K(a[i].y - Y2);
		}
		sort(a + 1, a + n + 1); a[0].d = 0;
		LL ans = 1e18;
		for (int i = 0; i <= n; ++i)
		{
			LL R = 0;
			for (int j = i + 1; j <= n; ++j)gmax(R, a[j].D);
			gmin(ans, a[i].d + R);
		}
		printf("%lld\n", ans);
	}
	return 0;
}
/*
【trick&&吐槽】
最近做题太不认真了,这题我竟然没怎么想清楚就写了三分。
写完才发现样例都跑不出。实在是太蠢了!
三分是错误的。
因为在r位于[a[p].d a[p+1].d]范围内时,可能当r为两侧(a[p].d a[p+1].d)的权值时更优。
不满足整体单峰性。

【题意】
有2个灌溉器,坐标分别在(X1,Y1)和(X2,Y2)
有n个点需要被灌溉,给出你坐标。
问你,我们如何设置这2个灌溉器的灌溉半径r与R,才能使得所有的点都被灌溉到。
且r^2+R^2尽可能小。

【类型】
暴力排序枚举 or 三分

【分析】
很显然,r和R都是恰好灌溉到距离其最远的点就好了。
然而,这不意味着r和R是整数。
只意味着r^2与R^2是整数。

我们发现点数n很小,只有2000
于是自然想到,我们可以暴力。
如果我们把每个点到1号灌溉源距离的平方设为d,到2号灌溉源距离的平方设为D
那么,我们枚举r^2,只要把所有的d排成升序依次枚举即可。
剩下的灌溉不到的,让2号灌溉源处理。

【时间复杂度&&优化】
O(n^2)

*/


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值