hiho week 124 register

Ended

Participants:159

Verdict:Accepted
Score:100 / 100
Submitted:2016-11-12 22:06:38

Lang:G++

Edit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include<iostream>
#include<cstdio>
#include<cstring>
#include<vector>
#include<algorithm>
#ifdef L_JUDGE
#pragma warning(disable:4996)
#endif
using 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:
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX