//Tencent_0912_2 import java.util.Arrays; import java.util.Scanner; public class Main { public static class Point{ public int x; public int y; public Point(int x, int y) { this.x = x; this.y = y; } public double getDis(Point p){ return Math.pow((this.x - p.x) * (this.x - p.x)...