要把(0,0)围在墙角,很容易想到至少要有两个点分别在x轴和y轴上的点,这里对所给的n个点按照x坐标和y坐标排序一遍,然后找到两个在坐标轴上的点即可求出答案 #include <iostream> #include <vector> #include <algorithm> #include <cstdio> #include <cmath> using namespace std; typedef pair<double, double> PDD; const int N = 1000010; int n; PD...