A. 战争尾声 题解 暴力通过: 坐标范围不大,尝试每个点也就是200*200 还需要查看所有的国家 是否 距离当前尝试的点 距离相等 200*200 * n (n最大200) O(8000000) 暴力可过 Code #include <iostream> #include <vector> #include <cmath> using namespace std; const double M = 1e-4; // 距离 double f(int x, int y, pair<int, int> p) { retu...