#include <cstdio> #include <iostream> #include <cstring> #include <algorithm> #include <vector> #include <cmath> using namespace std; const int MAXN = 5000; class freckle{ public: int num;//编号 double x, y; freckle(int a, double b, double c):num(a),x(b),y(c){...