#include #include #include using namespace std ; struct pt { bool operator<(const pt &o) const { if (o.x != x) return x < o.x ; return y < o.y ; } double x, y ; } ; double side(const pt &a, const pt &b, const pt &c) { pt ab{b.x-a.x, b.y-a.y}, ac{c.x-a.x, c.y-a.y} ; return ab.x*ac.y-ab.y*ac.x ; } int main() { int N ; cin >> N ; string s ; vector pts(N) ; vector perm(N) ; for (int i=0; i> pts[i].x >> pts[i].y ; perm[i] = i ; } cin >> s ; int st = 0 ; for (int i=0; i