hdu1540 线段树区间合并

先说下题意:

有连续的n个村庄编号1--n    开始相邻的能连续上  现在执行m次操作

1:毁坏村庄a

2:询问与a能连续的村庄的个数

3:修好最后被毁坏的村庄(此处用到栈 注意多次毁坏同一村庄的情况)

整天还是线段树做  对每个节点存3个值

pre :左端点连续个数

after :右端点连续个数

Max:整个区间连续个数

跟新操作分为毁坏和维修  用-1和1区别

这道题与别的不同在于他的点询问        可以根据Max来判断

#include<stdio.h>
#include<string.h>
#include<stack>
#include<algorithm>
#include<iostream>
using namespace std;

#define LL(x) (x<<1)
#define RR(x) ((x<<1)|1)


struct node
{
    int pre,after,Max;
}num[4*50000];
int max(int a,int b)
{
    return a>b?a:b;
}
int deal(int L,int R,int mark)
{
    int mid=(L+R)/2;
    num[mark].pre=num[mark].after=num[mark].Max=R-L+1;
    if(L==R) return 0;
    deal(L,mid,LL(mark));
    deal(mid+1,R,RR(mark));
    return 0;
}
int update(int L,int R,int pos,int mark,int k)
{
    if(L==R&&L==pos)
    {
        if(k==-1)
        num[mark].pre=num[mark].after=num[mark].Max=0;
        else
        num[mark].pre=num[mark].after=num[mark].Max=1;
        return 0;
    }
    int mid=(L+R)/2;
    if(pos<=mid)
    update(L,mid,pos,LL(mark),k);
    else update(mid+1,R,pos,RR(mark),k);
    num[mark].pre=num[LL(mark)].pre;
    if(num[LL(mark)].pre==mid-L+1)
    num[mark].pre+=num[RR(mark)].pre;
    num[mark].after=num[RR(mark)].after;
    if(num[RR(mark)].after==R-mid)
    num[mark].after+=num[LL(mark)].after;
    num[mark].Max=max(num[LL(mark)].Max,num[RR(mark)].Max);
    num[mark].Max=max(num[mark].Max,num[LL(mark)].after+num[RR(mark)].pre);
    return 0;
}
int find(int L,int R,int pos,int mark)
{
    if(num[mark].Max==R-L+1||num[mark].Max==0||L==R)
    {
        return num[mark].Max;
    }
    int mid=(L+R)/2;
    if(pos<=mid)
    {
        if(pos>=mid-num[LL(mark)].after)
        return find(L,mid,pos,LL(mark))+num[RR(mark)].pre;
        else return find(L,mid,pos,LL(mark));
    }
    else
    {
        if(pos<=num[RR(mark)].pre+mid+1)
        return find(mid+1,R,pos,RR(mark))+num[LL(mark)].after;
        else return find(mid+1,R,pos,RR(mark));
    }
}
int main()
{
    int n,m,i,j,a;
    int leap[50010];
    char str[5];
    while(~scanf("%d%d",&n,&m))
    {
        deal(1,n,1);
        stack<int>q;
        memset(leap,0,sizeof(leap));
        for(i=1;i<=m;i++)
        {
            scanf("%s",str);
            if(str[0]==‘D‘)
            {
                scanf("%d",&a);
                q.push(a);
                if(leap[a]==0)
                {
                    leap[a]=1;
                    update(1,n,a,1,-1);
                }
            }
            else if(str[0]==‘R‘)
            {
                int b;
                while(!q.empty())
                {
                    b=q.top();
                    q.pop();
                    if(leap[b]==1)
                    {
                        leap[b]=0;
                        update(1,n,b,1,1);
                        break;
                    }
                }
            }
            else
            {
                scanf("%d",&a);
                if(leap[a]==1) printf("0\n");
                else printf("%d\n",find(1,n,a,1));
            }
        }
    }
    return 0;
}
时间: 2024-10-12 03:33:39

hdu1540 线段树区间合并的相关文章

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

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

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

线段树 区间合并

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

POJ 3667 Hotel (初遇线段树区间合并)

题意: 有一个线段,从1到n,下面m个操作,操作分两个类型,以1开头的是查询操作,以2开头的是更新操作 1 w 表示在总区间内查询一个长度为w的可用区间并且要最靠左,能找到的话返回这个区间的左端点并占用了这个区间,找不到返回0 2 a len , 表示从单位a开始,清除一段长度为len的区间(将其变为可用,不被占用),不需要输出. 思路: 这是第一次遇到线段树区间合并的题目,写下感悟,还是对线段的更新和查询工作,但是查询的对象的性质已经不像单点那样,查询的是某个线段的最大可用区间是多少,还要一并