经典做题风格第一道:就这第二道:我写的这么对,怎么0%啊第三道:不会一点第四道:无缘一见贴第二道 0% 的错误原因 应该我猜是错在48行 if写成了while谁懂啊,可把我聪明死了,还写个while #include <bits/stdc++.h> using namespace std; struct Point { int x; int y; }; bool cmp_x(Point p1, Point p2) { if (p1.x == p2.x) return p1.y < p2.y; return p1.x < p2.x; } bool cmp_y(Point ...