Lang:G++
Edit12345678910111213141516171819202122232425262728293031#include<iostream>#include<cstdio>#include<cstring>#include<vector>#include<algorithm>#ifdef L_JUDGE#pragma warning(disable:4996)#endifusing namespace std;const int MAXN=5e4+10;const int MAXM=5010;const int NODE_CAPACITY=10;class Point{public:int x,y;Point(int a=0,int b=0){x=a;y=b;}Point(const Point& p){x=p.x;y=p.y;}};class QuadtreeNode{public: