P2163 [SHOI2007]园丁的烦恼
注意x = 0 和 y = 0;
题目背景
很久很久以前,在遥远的大陆上有一个美丽的国家。统治着这个美丽国家的国王是一个园艺爱好者,在他的皇家花园里种植着各种奇花异草。
有一天国王漫步在花园里,若有所思,他问一个园丁道: “最近我在思索一个问题,如果我们把花坛摆成六个六角形,那么……”
“那么本质上它是一个深度优先搜索,陛下。”园丁深深地向国王鞠了一躬。
“嗯……我听说有一种怪物叫九头蛇,它非常贪吃苹果树……”
“是的,显然这是一道经典的动态规划题,早在 N 元 40024002 年我们就已经发现了其中的奥秘了,陛下。”
“该死的,你究竟是什么来头?”
“陛下息怒,干我们的这行经常莫名其妙地被问到和 OI 有关的题目,我也是为了预防万一啊!” 王者的尊严受到了伤害,这是不可容忍的。
题目描述
看来一般的难题是难不倒这位园丁的,国王最后打算用车轮战来消耗他的实力: “年轻人,在我的花园里有 nn 棵树,每一棵树可以用一个整数坐标来表示,一会儿,我的 mm 个骑士们会来轮番询问你某一个矩阵内有多少树,如果你不能立即答对,你就准备走人吧!”说完,国王气呼呼地先走了。
这下轮到园丁傻眼了,他没有准备过这样的问题。所幸的是,作为“全国园丁保护联盟”的会长——你,可以成为他的最后一根救命稻草。
输入格式
第一行有两个整数 n, mn,m,分别表示树木个数和询问次数。
接下来 nn 行,每行两个整数 x, yx,y,表示存在一棵坐标为 (x, y)(x,y) 的树。有可能存在两棵树位于同一坐标。
接下来 mm 行,每行四个整数 a, b, c, da,b,c,d,表示查询以 (a, b)(a,b) 为左下角,(c, d)(c,d) 为右上角的矩形内部(包括边界)有多少棵树。
输出格式
对于每个查询,输出一行一个整数表示答案。
输入输出样例
输入 #1复制
3 1
0 0
0 1
1 0
0 0 1 1
输出 #1复制
3
/*
* @Descripttion: 日常训练
* @Author: Fantasy_421
* @Date: 2021-03-18 18:51:13
* @LastEditTime: 2021-03-18 21:05:53
*/
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <string>
#include <vector>
#include <queue>
#include <set>
#include <cmath>
// #define int long long
#define ull unsigned long long
#define in1(a) scanf("%d", &a)
#define in2(a, b) scanf("%d%d", &a, &b)
#define in3(a, b, c) scanf("%d%d%d", &a, &b, &c)
#define in4(a, b, c, d) scanf("%d%d%d%d", &a, &b, &c, &d)
#define in1L(a) scanf("%lld", &a)
#define in2L(a, b) scanf("%lld%lld", &a, &b)
#define in3L(a, b, c) scanf("%lld%lld%lld", &a, &b, &c)
#define in4L(a, b, c, d) scanf("%lld%lld%lld%lld", &a, &b, &c, &d)
#define IOS ios::sync_with_stdio(false), cin.tie(0), cout.tie(0)
#define rep(i, a, b) for (int i = 1; i <= a; i += b)
#define YES cout << "YES\n"
#define NO cout << "NO\n"
#define endl '\n'
using namespace std;
const int N=500050;\
const int M=1e7+50;
int n,m,idx=1;
int tr[N],ans[N];
struct node
{
int x,y,op,id;
friend bool operator<(const node x,const node y)
{
if(x.x==y.x)
return x.op<y.op;
return x.x<y.x;
}
}p[N*5],q[N*5];
int lowbit(int x)
{
return x&-x;
}
void add(int x,int c)
{
while(x<=N)
{
tr[x]+=c;
x+=lowbit(x);
}
}
int ask(int x)
{
int res=0;
while(x)
{
res+=tr[x];
x-=lowbit(x);
}
return res;
}
void cdq(int l,int r)
{
if(l==r)
return;
int mid=(l+r)>>1;
cdq(l,mid),cdq(mid+1,r);
int i=l,j=mid+1,k=l;
while(i<=mid&&j<=r)
{
if(p[i]<p[j])
{
if(p[i].op==0)
{
add(p[i].y,1);
}
q[k++]=p[i++];
}
else
{
if(p[j].op==1)
{
ans[p[j].id]+=ask(p[j].y);
}else if(p[j].op==2)
{
ans[p[j].id]-=ask(p[j].y);
}
q[k++]=p[j++];
}
}
while(i<=mid)
{
if(p[i].op==0)
{
add(p[i].y,1);
}
q[k++]=p[i++];
}
while(j<=r)
{
if(p[j].op==1)
{
ans[p[j].id]+=ask(p[j].y);
}else if(p[j].op==2)
{
ans[p[j].id]-=ask(p[j].y);
}
q[k++]=p[j++];
}
for(int i=l;i<=mid;i++)
if(p[i].op==0)
add(p[i].y,-1);
for(int i=l;i<=r;i++)
p[i]=q[i];
}
signed main()
{
IOS;
int n,m;
cin>>n>>m;
for(int i=1;i<=n;i++)
{
cin>>p[idx].x>>p[idx].y;
p[idx].x+=2;
p[idx++].y+=2;
}
for(int i=1;i<=m;i++)
{
int sx,sy,ex,ey;
cin>>sx>>sy>>ex>>ey;
sx+=2,sy+=2,ex+=2,ey+=2;
p[idx].x=sx-1,p[idx].y=sy-1,p[idx].op=1,p[idx++].id=i;
p[idx].x=ex,p[idx].y=ey,p[idx].op=1,p[idx++].id=i;
p[idx].x=sx-1,p[idx].y=ey,p[idx].op=2,p[idx++].id=i;
p[idx].x=ex,p[idx].y=sy-1,p[idx].op=2,p[idx++].id=i;
}
cdq(1,n+m*4);
for(int i=1;i<=m;i++)
cout<<ans[i]<<endl;
return 0;
}