POJ 2155 二维线段树 经典的记录所有修改再统一遍历 单点查询

本来是想找一个二维线段树涉及懒惰标记的,一看这个题,区间修改,单点查询,以为是懒惰标记,敲到一半发现这二维线段树就不适合懒惰标记,你更新了某段的某列,但其实其他段的相应列也要打标记,但因为区间不一样,又不好打。。。也可能是我这是在套用一维线段树的思想,还有更好的二维线段树懒惰标记方法

反正到现在我还没搞定二维线段树的懒惰标记,因为这道题不用懒惰标记,因为是二进制序列,区间修改仅限于翻转操作,那就只要记录每次操作,最后查询的时候从上往下把所有修改都来上一遍,就可以了。就类似于树状数组的第二种用法,每次区间修改,最后查询的时候把前面的修改都给加起来。

即区间修改的时候,定位到某段某区间列进行标记,单独查询的时候,针对每个行段的该列所在区间都遍历一遍,把所有的修改都遍历到之后就是结果了

#include <iostream>
#include <cstdio>
#include <cstring>
#define lson rt<<1,l,mid
#define rson rt<<1|1,mid+1,r
using namespace std;
const int N=1010;
int d[N*3][N*3];
int flag[N*3][N*3];
int n,Q;
void buildc(int k,int rt,int l,int r)
{
    d[k][rt]=0;
    if (l>=r){
        return;
    }
    int mid=(l+r)>>1;
    buildc(k,lson);
    buildc(k,rson);
}
void buildr(int rt,int l,int r)
{
    buildc(rt,1,1,n);
    if (l>=r){
        return;
    }
    int mid=(l+r)>>1;
    buildr(lson);
    buildr(rson);
}

void fixc(int k,int c1,int c2,int rt,int l,int r)
{
    if (c1<=l && r<=c2){
        d[k][rt]^=1;
        return;
    }
    int mid=(l+r)>>1;
    if (c1>mid) fixc(k,c1,c2,rson);
    else
    if (c2<=mid) fixc(k,c1,c2,lson);
    else{
        fixc(k,c1,c2,lson);
        fixc(k,c1,c2,rson);
    }
}
void fixr(int r1,int r2,int c1,int c2,int rt,int l,int r)
{
    if (r1<=l && r<=r2){
        fixc(rt,c1,c2,1,1,n);
        return;
    }
    int mid=(l+r)>>1;
    if (r1>mid) fixr(r1,r2,c1,c2,rson);
    else
    if (r2<=mid) fixr(r1,r2,c1,c2,lson);
    else{
        fixr(r1,r2,c1,c2,lson);
        fixr(r1,r2,c1,c2,rson);
    }
}
void queryc(int& ans,int k,int C,int rt,int l,int r)
{
    if (d[k][rt]){
        ans^=1;
    }
    if (l>=r){
        return ;
    }
    int mid=(l+r)>>1;
    if (mid>=C)
    queryc(ans,k,C,lson);
    else
    queryc(ans,k,C,rson);
}
void queryr(int& ans,int R,int C,int rt,int l,int r)
{
    queryc(ans,rt,C,1,1,n);
    if (l>=r){
        return;
    }
    int mid=(l+r)>>1;
    if (R<=mid)  queryr(ans,R,C,lson);
    else
    queryr(ans,R,C,rson);
}
int main()
{
    char ch[5];
    int a,b,c,d;
    int t;
    scanf("%d",&t);
    while (t--)
    {
       scanf("%d%d",&n,&Q);
       buildr(1,1,n);
       while (Q--)
       {
           scanf("%s",ch);
           if (ch[0]==‘C‘){
               scanf("%d%d%d%d",&a,&b,&c,&d);
               fixr(a,c,b,d,1,1,n);
           }
           else {
               scanf("%d%d",&a,&b);
               int ans=0;
               queryr(ans,a,b,1,1,n);
               printf("%d\n",ans);
           }
       }
       if (t) puts("");
    }
    return 0;
}

  

POJ 2155 二维线段树 经典的记录所有修改再统一遍历 单点查询,布布扣,bubuko.com

时间: 2024-10-23 13:36:12

POJ 2155 二维线段树 经典的记录所有修改再统一遍历 单点查询的相关文章

POJ 2155 二维线段树

POJ 2155  二维线段树 思路:二维线段树就是每个节点套一棵线段树的树. 刚开始因为题目是求A[I,J],然后在y查询那直接ans^=Map[i][j]的时候没看懂,后面自己把图画出来了才理解. 因为只有0和1,所以可以用异或来搞,而不需要每次都需要修改. #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<map> #incl

POJ2155 Matrix二维线段树经典题

题目链接 二维树状数组 1 #include<iostream> 2 #include<math.h> 3 #include<algorithm> 4 #include<stdlib.h> 5 using namespace std; 6 #define ll long long 7 #define re(i,n) for(int i=0;i<n;i++) 8 const int maxn = 1007; 9 int c[maxn][maxn]; 10

POJ 2155 2维线段树 || 2维BIT

#include <iostream> #include <cstring> #include <cstdio> #include <algorithm> #include <vector> #include <map> #include <set> #include <stack> #define mp make_pair #define pa pair<int,int> #define pb p

POJ 1195 2维线段树(树套树实现) 树状数组

1: #include <stdio.h> 2: #include <string.h> 3: #include <stdlib.h> 4: #include <algorithm> 5: #include <iostream> 6: using namespace std; 7:   8: #define LL(a) a<<1 9: #define RR(a) a<<1|1 10: const int MaxL = 10

POJ 2155 Matrix (二维线段树)

http://poj.org/problem?id=2155 Matrix Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 18143   Accepted: 6813 Description Given an N*N matrix A, whose elements are either 0 or 1. A[i, j] means the number in the i-th row and j-th column. I

poj 1195:Mobile phones(二维线段树,矩阵求和,经典题)

Mobile phones Time Limit: 5000MS   Memory Limit: 65536K Total Submissions: 14391   Accepted: 6685 Description Suppose that the fourth generation mobile phone base stations in the Tampere area operate as follows. The area is divided into squares. The

POJ 2155 Matrix 二维线段树+标记永久化?

题意:链接 方法:二维线段树+标记永久化 解析:题意是比较明朗的,算一下内存发现4000^2也是可以接受的,于是就开始yy二维线段树? 对于第一层x的线段树,每个节点开一整棵y线段树. 用个二维数组就实现了? 不过发现个问题啊,这题怎么pushdown啊,标记传不下去啊.如果给x打个标记那么怎么知道y传那段啊? 于是就学了新的东西?标记永久化. 本题是单点查询嘛,标记永久化就应该是把相应的区间直接异或,不用往下传?那查询的时候怎么办呢?只需要在查询的时候把所有路过该点的区间都异或起来就OK了.貌

POJ 2155 Matrix【二维线段树】

题目大意:给你一个全是0的N*N矩阵,每次有两种操作:1将矩阵中一个子矩阵置反,2.查询某个点是0还是1 思路:裸的二维线段树 #include<iostream>#include<cstdio>#include <math.h>#include<algorithm>#include<string.h>#include<queue>#define MOD 1000003#define maxn 4009#define LL long

poj 2155 二维树状数组

http://poj.org/problem?id=2155 Matrix Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 17721   Accepted: 6653 Description Given an N*N matrix A, whose elements are either 0 or 1. A[i, j] means the number in the i-th row and j-th column. I