hdu3911 Black And White(线段树区间合并)

题意:给一个由0,1组成的序列,有两种操作,一种是翻转给定区间的数(0->1,1->0),另一种是查询给定区间内由1组成的子串的最大长度。重点在区间合并和延迟标记。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<algorithm>
#include<queue>
#include<set>
#include<map>
#include<vector>
#include<cmath>
#define INF 0x3fffffff
using namespace std;

const int N=100010;

struct Node
{
    int l,r,lsum0,rsum0,msum0,lsum1,rsum1,msum1;
    int flag;//0不用翻转,1用
    int Mid(){
        return (l+r)/2;
    }
}tree[4*N];

int a[N];

//合并左右子树
void pushUp(int rt)
{
    int ll=tree[rt*2].r-tree[rt*2].l+1;
    int rl=tree[rt*2+1].r-tree[rt*2+1].l+1;
    //1的从左开始最大连续数
    tree[rt].lsum1=tree[rt*2].lsum1;
    //若等于左子树长度,就要加上右子树左边最大
    if(tree[rt*2].lsum1==ll){
        tree[rt].lsum1+=tree[rt*2+1].lsum1;
    }
    //同理,1的从右开始最大连续数
    tree[rt].rsum1=tree[rt*2+1].rsum1;
    if(tree[rt*2+1].rsum1==rl){
        tree[rt].rsum1+=tree[rt*2].rsum1;
    }
    //此区间的最大子串要么在中间,要么从左开始,要么从右开始,所以最大子串为三种情况最大值。
    tree[rt].msum1=max(max(tree[rt*2].msum1,tree[rt*2+1].msum1),tree[rt*2].rsum1+tree[rt*2+1].lsum1);

    tree[rt].lsum0=tree[rt*2].lsum0;
    if(tree[rt*2].lsum0==ll){
        tree[rt].lsum0+=tree[rt*2+1].lsum0;
    }
    tree[rt].rsum0=tree[rt*2+1].rsum0;
    if(tree[rt*2+1].rsum0==rl){
        tree[rt].rsum0+=tree[rt*2].rsum0;
    }
    tree[rt].msum0=max(max(tree[rt*2].msum0,tree[rt*2+1].msum0),tree[rt*2].rsum0+tree[rt*2+1].lsum0);
}

//交换
void Swap(int rt)
{
    swap(tree[rt].lsum0,tree[rt].lsum1);
    swap(tree[rt].rsum0,tree[rt].rsum1);
    swap(tree[rt].msum0,tree[rt].msum1);
}

//从父节点向下更新(lazy)
void pushDown(int rt)
{
    if(tree[rt].flag==1){
        tree[rt*2].flag^=1;
        tree[rt*2+1].flag^=1;
        tree[rt].flag=0;
        Swap(rt*2);
        Swap(rt*2+1);
    }
}

void build(int rt,int l,int r)
{
    tree[rt].l=l;tree[rt].r=r;tree[rt].flag=0;
    //初始化每个叶子节点
    if(l==r){
        if(a[l]==0){
            tree[rt].lsum0=tree[rt].rsum0=tree[rt].msum0=1;
            tree[rt].lsum1=tree[rt].rsum1=tree[rt].msum1=0;
        }
        else if(a[l]==1){
            tree[rt].lsum0=tree[rt].rsum0=tree[rt].msum0=0;
            tree[rt].lsum1=tree[rt].rsum1=tree[rt].msum1=1;
        }
        return;
    }
    int mid=(l+r)/2;
    build(2*rt,l,mid);
    build(2*rt+1,mid+1,r);
    pushUp(rt);
}

void update(int rt,int l,int r)
{
    if(tree[rt].l==l&&tree[rt].r==r){
        tree[rt].flag^=1;
        Swap(rt);
        return;
    }
    //更新子树
    pushDown(rt);
    if(r<=tree[rt].Mid()){
        update(2*rt,l,r);
    }
    else if(l>tree[rt].Mid()){
        update(2*rt+1,l,r);
    }
    else{
        update(2*rt,l,tree[rt].Mid());
        update(2*rt+1,tree[rt].Mid()+1,r);
    }
    //向上合并更新
    pushUp(rt);
}

int query(int rt,int l,int r)
{
   if(tree[rt].l==l&&tree[rt].r==r) {
        return tree[rt].msum1;
   }
   pushDown(rt);
   int ans;
   if(r<=tree[rt].Mid()){
        ans=query(rt*2,l,r);
   }
   else if(l>tree[rt].Mid()){
        ans=query(2*rt+1,l,r);
   }
   else{
        int lr=query(2*rt,l,tree[rt].Mid());
        int rr=query(2*rt+1,tree[rt].Mid()+1,r);
        int a=tree[rt*2].rsum1;
        if(a>tree[rt*2].r-l+1) a=tree[rt*2].r-l+1;
        int b=tree[rt*2+1].lsum1;
        if(b>r-tree[rt*2+1].l+1) b=r-tree[rt*2+1].l+1;
        ans=max(max(lr,rr),a+b);
   }
   pushUp(rt);
   return ans;
}

int main()
{
    //freopen("d:\\Test.txt","r",stdin);
    int n;
    while(scanf("%d",&n)!=EOF){
        for(int i=1;i<=n;i++) scanf("%d",&a[i]);
        build(1,1,n);
        int m;
        scanf("%d",&m);
        while(m--){
            int op,l,r;
            scanf("%d%d%d",&op,&l,&r);
            if(op==0){
                cout<<query(1,l,r)<<endl;
            }
            else if(op==1){
                update(1,l,r);
            }
        }
    }
    return 0;
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-13 03:11:59

hdu3911 Black And White(线段树区间合并)的相关文章

HDU 3911 Black And White (线段树区间合并 + lazy标记)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3911 给你n个数0和1,m个操作: 0操作  输出l到r之间最长的连续1的个数 1操作  将l到r之间的0变1,1变0 区间合并的模版题,结构体中的lsum1表示从此区间最左端开始连续1的个数,rsum1表示从此区间最右端开始连续1的个数,sum1表示此区间连续1的个数最长是多少.lsum0,rsum0,sum0也是如此.每一次1的操作将区间内lazy标记与1异或一次,异或两次就说明操作抵消了.然后

HDU 3911 Black And White(线段树区间合并)

Problem Description There are a bunch of stones on the beach; Stone color is white or black. Little Sheep has a magic brush, she can change the color of a continuous stone, black to white, white to black. Little Sheep like black very much, so she wan

hdu3911 线段树 区间合并

1 //Accepted 3911 750MS 9872K 2 //线段树 区间合并 3 #include <cstdio> 4 #include <cstring> 5 #include <iostream> 6 #include <queue> 7 #include <cmath> 8 #include <algorithm> 9 using namespace std; 10 /** 11 * This is a documen

HDU 3308 LCIS (线段树区间合并)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3308 题目很好懂,就是单点更新,然后求区间的最长上升子序列. 线段树区间合并问题,注意合并的条件是a[mid + 1] > a[mid],写的细心点就好了. 1 #include <iostream> 2 #include <cstring> 3 #include <cstdio> 4 using namespace std; 5 const int MAXN = 1

HDU 5316 Magician(线段树区间合并入门)

本文纯属原创,转载请注明出处谢谢.http://blog.csdn.net/zip_fan. 题目传送门:http://acm.hdu.edu.cn/showproblem.php?pid=5316 Time Limit: 18000/9000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Problem Description Fantasy magicians usually gain their ability

poj3667 线段树 区间合并

1 //Accepted 3728 KB 1079 ms 2 //线段树 区间合并 3 #include <cstdio> 4 #include <cstring> 5 #include <iostream> 6 #include <queue> 7 #include <cmath> 8 #include <algorithm> 9 using namespace std; 10 /** 11 * This is a document

线段树 区间合并

poj3667 Hotel 区间合并入门题,照着代码打的, 题意:1 a:询问是不是有连续长度为a的空房间,有的话住进最左边       2 a b:将[a,a+b-1]的房间清空思路:记录区间中最长的空房间,开三个数组,msum[rt]表示节点rt内连续的1的个数的最大值,lsum[rt]表示从节点rt左端点开始连续1的个数,rsum[rt]表示从节点rt右端点开始连续1的个数..线段树操作:update:区间替换 query:询问满足条件的最左端点 1 #include<iostream>

【BZOJ3638】Cf172 k-Maximum Subsequence Sum 线段树区间合并(模拟费用流)

[BZOJ3638]Cf172 k-Maximum Subsequence Sum Description 给一列数,要求支持操作: 1.修改某个数的值 2.读入l,r,k,询问在[l,r]内选不相交的不超过k个子段,最大的和是多少.1 ≤ n ≤ 105,1 ≤ m ≤ 105,1 ≤ l ≤ r ≤ n, 1 ≤ k ≤ 20 Sample Input 9 9 -8 9 -1 -1 -1 9 -8 9 3 1 1 9 1 1 1 9 2 1 4 6 3 Sample Output 17 25

HDU 3308 LCIS(最长连续上升子序列)(线段树区间合并)

题意:给你n个整数,有两种操作,U A B把第A个数变成B,Q A B查询区间[A,B]的最长连续上升序列. 思路:还是查询和更新操作,而且也是询问区间中满足条件的连续最长区间 ,所以是线段树区间合并类型的题,通法是开三棵线段树,一个记录此区间内的LCIS的最长长度,一个记录从左边第一个数开始的LCIS长度,另一个记录从右边最后一个数结尾的LCIS长度.然后试图找到父亲与儿子关系维护的递推关系式就好 本题中的递推关系是: 1. 左儿子最右边的值 < 右儿子最左边的值 lmx = (左儿子的lmx