Poj2155Matrix二维线段树

题意: c表示矩阵内01 互换,q表示单点查询。

#include<stdio.h>
#include<iostream>
#include<string.h>
#include<algorithm>

using namespace std;

const int maxn = 1000+5;
#define lson l,mid,rt<<1
#define rson mid+1,r,rt<<1|1
int n;
char color[maxn<<2][maxn<<2];
 void inbuild(int root,int l,int r,int rt)
 {
     color[root][rt] = 0;
     if(l==r) return ;
     int mid=(l+r)>>1;
     inbuild(root,lson);
     inbuild(root,rson);
 }

 void build(int l,int r,int rt)
 {
     inbuild(rt,1,n,1);
     if(l==r) return ;
     int mid=(l+r)>>1;
     build(lson);
     build(rson);
 }

 void down(int root,int L,int R,int l,int r,int rt)
 {
     if(color[root][rt]){
       // color[root][rt<<1]^=1; color[root][rt<<1|1]^=1;
        color[root<<1][rt]^=1; color[root<<1|1][rt]^=1;
        color[root][rt] =0;
     }
     if(L<=l&&r<=R) return ;
     int mid=(l+r)>>1;
     if(L<=mid) down(root,L,R,lson);
     if(R>mid) down(root,L,R,rson);

 }

 void inupdate(int root,int L,int R,int l,int r,int rt)
 {
     if(L<=l&&r<=R){
        color[root][rt]^=1;return ;
     }
     int mid=(l+r)>>1;
     if(color[root][rt]){
        color[root][rt<<1] ^=1;color[root][rt<<1|1] ^=1;
        color[root][rt] =0;
     }
     if(L<=mid) inupdate(root,L,R,lson);
     if(R>mid) inupdate(root,L,R,rson);
 }

void update(int L,int R,int S,int X,int l,int r,int rt)
{
    if(L<=l&&r<=R){
        inupdate(rt,S,X,1,n,1);return ;
    }
    down(rt,S,X,1,n,1);
    int mid=(l+r)>>1;
    if(L<=mid) update(L,R,S,X,lson);
    if(R>mid) update(L,R,S,X,rson);
}

int inask(int root,int key,int l,int r,int rt)
{
    if(l==r) return color[root][rt];
    int mid=(l+r)>>1;
    if(color[root][rt]){
        color[root][rt<<1] ^=1;
        color[root][rt<<1|1] ^=1;
        color[root][rt] = 0;
    }
    if(key<=mid) return inask(root,key,lson);
    else return inask(root,key,rson);
}

int ask(int L,int S,int l,int r,int rt)
{
    if(l==r){
        return inask(rt,S,1,n,1);
    }
    int mid=(l+r)>>1;
    down(rt,S,S,1,n,1);
    if(L<=mid) return ask(L,S,lson);
    else return ask(L,S,rson);
}

int main()
{
    int T,m;
    char str[10];
    int a,b,c,d;
    cin>>T;
    while(T--){
        cin>>n>>m;
        build(1,n,1);
        for(int i = 0;i<m;i++){
            scanf("%s",str);
            if(str[0]==‘C‘){
                scanf("%d%d%d%d",&a,&b,&c,&d);
                update(a,c,b,d,1,n,1);
            }
            else {
                scanf("%d%d",&a,&b);
                printf("%d\n",ask(a,b,1,n,1));
            }
        }
        if(T) cout<<endl;
    }
    return 0;
}
时间: 2024-11-08 05:02:06

Poj2155Matrix二维线段树的相关文章

HDU1832 二维线段树求最值(模板)

Luck and Love Time Limit: 10000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 50 Accepted Submission(s): 20   Problem Description 世界上上最远的距离不是相隔天涯海角而是我在你面前可你却不知道我爱你                ―― 张小娴 前段日子,枫冰叶子给Wiskey做了个征婚启事,聘

ZOJ 2859 二维线段树

思路:自己写的第二发二维线段树1A,哈哈,看来对二维的push操作比较了解了:但是还没遇到在两个线段树中同时进行push操作的,其实这题我是想在x维和y维同时进行push操作的,但是想了好久不会,然后看到这题又给出10秒,然后想想在x维线段直接单点查询肯定也过了,然后在第二维就只有pushup操作,在第一维线段树没有pushup操作.要是在第一维也有pushup操作的话,那就不用单点查询那么慢了.不过也A了,想找题即在二维同时进行pushup和pushdown操作的. #include<iost

[POJ2155] Matrix(二维线段树,树套树)

题目链接:http://poj.org/problem?id=2155 题意:给一个01矩阵,两个操作,翻转:子矩阵里每一个数都由0变1,1变0. 查询:查询某一点是0还是1. 一直以为二维线段树就是开一个线段树数组的我- 这题暴力更新每一个小矩形,翻转就+1,最后看看某点的奇偶. 写屎了,特别注意的是在外层查询的时候要先把当前层的内层query掉,接着再向下扩展.这样外层就不用lazy啦 1 #include <algorithm> 2 #include <iostream> 3

poj1195 Mobile phones 二维线段树入门

二维线段树就是树套树,线段树套线段树... #include<iostream> #include<cstdio> #include<cstring> #include<cstdlib> #include<algorithm> #define REP(i,a,b) for(int i=a;i<=b;i++) #define MS0(a) memset(a,0,sizeof(a)) #define lson l,m,rt<<1 #

UVA 11297 Census ——二维线段树

[题目分析] 二维线段树模板题目. 简直就是无比的暴力.时间复杂度为两个log. 标记的更新方式比较奇特,空间复杂度为N^2. 模板题目. [代码] #include <cstdio> #include <cstring> //#include <cmath> #include <cstdlib> #include <map> #include <set> #include <queue> #include <str

tyvj P1716 - 上帝造题的七分钟 二维树状数组区间查询及修改 二维线段树

P1716 - 上帝造题的七分钟 From Riatre    Normal (OI)总时限:50s    内存限制:128MB    代码长度限制:64KB 背景 Background 裸体就意味着身体. 描述 Description “第一分钟,X说,要有矩阵,于是便有了一个里面写满了0的n×m矩阵.第二分钟,L说,要能修改,于是便有了将左上角为(a,b),右下角为(c,d)的一个矩形区域内的全部数字加上一个值的操作.第三分钟,k说,要能查询,于是便有了求给定矩形区域内的全部数字和的操作.第

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

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

本来是想找一个二维线段树涉及懒惰标记的,一看这个题,区间修改,单点查询,以为是懒惰标记,敲到一半发现这二维线段树就不适合懒惰标记,你更新了某段的某列,但其实其他段的相应列也要打标记,但因为区间不一样,又不好打...也可能是我这是在套用一维线段树的思想,还有更好的二维线段树懒惰标记方法 反正到现在我还没搞定二维线段树的懒惰标记,因为这道题不用懒惰标记,因为是二进制序列,区间修改仅限于翻转操作,那就只要记录每次操作,最后查询的时候从上往下把所有修改都来上一遍,就可以了.就类似于树状数组的第二种用法,

【BZOJ4785】[Zjoi2017]树状数组 树套树(二维线段树)

[BZOJ4785][Zjoi2017]树状数组 Description 漆黑的晚上,九条可怜躺在床上辗转反侧.难以入眠的她想起了若干年前她的一次悲惨的OI 比赛经历.那是一道基础的树状数组题.给出一个长度为 n 的数组 A,初始值都为 0,接下来进行 m 次操作,操作有两种: 1 x,表示将 Ax 变成 (Ax + 1) mod 2. 2 l r,表示询问 sigma(Ai) mod 2,L<=i<=r 尽管那个时候的可怜非常的 simple,但是她还是发现这题可以用树状数组做.当时非常yo