默默小鸭子

文章
6
资源
0
加入时间
2年10月21天

acdream1197 Points In Cuboid

题目链接:http://acdream.info/problem?pid=1197题意:给出一些点。每次给出一个长方体,问在长方体中的点的个数。思路:kd-tree。const int N=111111;struct node{ int x[3]; int L,R;};node a[N];int root,n,m;void ins...