以前写过一个二维线段树,现在忘得差不多了,又想了一遍,就是把一维的每一个节点再抽象成一维的线段树。
这个题查询的时候,每一个x维都要进行y维查询,只要经过的是1的都要加上,因为这样经过的肯定都包含要查询的点
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define N 1005
int c[N][N],n;
int lowbit(int i){
return i&(-i);
}
void update(int x,int y,int val){
int i,j;
for(i=x;i<=n;i+=lowbit(i))
for(j=y;j<=n;j+=lowbit(j))
c[i][j]+=val;
return ;
}
int getsum(int x,int y){
int s,i,j;
s=0;
for(i=x;i>=1;i-=lowbit(i))
for(j=y;j>=1;j-=lowbit(j))
s+=c[i][j];
return s;
}
int main(){
int tt,m,x1,x2,y1,y2;
char ch[4];
scanf("%d",&tt);
while(tt--){
memset(c,0,sizeof(c));
scanf("%d%d",&n,&m);
getchar();
while(m--){
scanf("%s",ch);
if(ch[0]=='C'){
scanf("%d%d%d%d",&x1,&y1,&x2,&y2);
x2++;
y2++;
update(x2,y2,1);
update(x1,y1,1);
update(x1,y2,-1);
update(x2,y1,-1);
}else
if(ch[0]=='Q'){
scanf("%d%d",&x1,&y1);
printf("%d\n",getsum(x1,y1)&1);
}
}
printf("\n");
}
return 0;
}