けんき says to YSITD struct pt { int x, y, c, n; pt operator-(pt b) const { return {x - b.x, y - b.y, c, n}; } }; inline int _area(pt &v1, pt &v2) { return v1.x * v2.y - v1.y * v2.x; } 如果想要_area()