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.
The first line of the input contains integers n, x1, y1, x2, y2 (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 the i-th flower.
It is guaranteed that all n + 2 points in the input are distinct.
Print the minimum possible value r12 + r22. Note, that in this problem optimal answer is always integer.
2 -1 0 5 3 0 2 5 2
6
4 0 0 5 0 9 4 8 3 -1 0 1 4
33
题意:给定两个圆的圆心和n个点,找到两个圆的半径r1和r2覆盖所有点。问最小的r1^2 + r2^2。
思路:预处理距离,对于一个点来说,要么被圆1覆盖,要么被圆2覆盖,那么枚举下就好了。时间复杂度O(n^2)。不过是可以优化的,先求出距离d2需要的信息,然后扫一遍d1,时间复杂度O(nlogn)。
AC代码:注意ans 初始化的细节,坑死了。
#include
#include
#include
#include
#include
#include
#include
#include
#include