#include using namespace std; const int N=505; const int MAX=1<<28; int n,m; struct Node{int x,y;}; Node a[N],b[N];//住房 士兵 int f[N][N]; double getline(Node a,Node b,Node c){ double x1=a.x-c.x,y1=a.y-c.y; double x2=b.x-c.x,y2=b.y-c.y; return x1*y2-x2*y1; } bool check(Node a,Node b,Node c){ if (a.x>b.x&&a.x>c.x){ return true; } if (a.xb.y&&a.y>c.y){ return true; } if (a.ym) printf("ToT\n"); else printf("%d\n",m-ans); } return 0; }