hdu 1540 Tunnel Warfare【线段树】

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1540

题目大意:抗日战争时期,各村庄被一条地道连接着(村庄排在一条线上),有三种操作:

第一种:某村庄被敌军摧毁;

第二种:修复上一个被摧毁的村庄;

第三种:查询与该村庄直接或间接链接的村庄有多少个(包括自己);

此题用线段树做,每个节点包含该区间从左端开始有多大连续区间ls,从右端向左有多大连续区间rs,该区间的最大连续区间mas;

代码如下:

#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
#define N 50050
#define L(x) x<<1
#define R(x) (x<<1) | 1
using namespace std;
struct node
{
    int l,r;
    int ls,rs,mas;//ls表示该区间从左端点开始的连续区间长度,rs表示右边
}a[N<<2];
int sta[N];
void init(int l,int r,int inx)
{
    a[inx].l=l;
    a[inx].r=r;
    a[inx].ls=a[inx].rs=a[inx].mas=r-l+1;
    if(l!=r)
    {
        int mid=((l+r)>>1);
        init(l,mid,L(inx));
        init(mid+1,r,R(inx));
    }
}
void insert(int inx,int x,int flag)
{
    if(a[inx].l==a[inx].r)
    {
        if(flag)
            a[inx].ls=a[inx].rs=a[inx].mas=1;//修复
        else
            a[inx].ls=a[inx].rs=a[inx].mas=0;//破坏
        return ;
    }
    int mid=(a[inx].l+a[inx].r)>>1;
    if(x>mid)
        insert(R(inx),x,flag);
    else
        insert(L(inx),x,flag);
    a[inx].ls=a[L(inx)].ls;
    a[inx].rs=a[R(inx)].rs;
    a[inx].mas=max(max(a[L(inx)].mas,a[R(inx)].mas),a[L(inx)].rs+a[R(inx)].ls);
    if(a[L(inx)].ls==a[L(inx)].r-a[L(inx)].l+1)
        a[inx].ls+=a[R(inx)].ls;
    if(a[R(inx)].rs==a[R(inx)].r-a[R(inx)].l+1)
        a[inx].rs+=a[L(inx)].rs;
}
int query(int inx,int x)
{
    if(a[inx].l==a[inx].r||a[inx].mas==0||a[inx].mas==a[inx].r-a[inx].l+1)
        return a[inx].mas;
    int mid=(a[inx].l+a[inx].r)>>1;
    if(x<=mid)
    {
        if(x>=a[L(inx)].r-a[L(inx)].rs+1)
            //return query(L(inx),x)+query(R(inx),mid+1);
            return a[L(inx)].rs+a[R(inx)].ls;
        else
            return query(L(inx),x);
    }
    else
    {
        if(x<=a[R(inx)].l+a[R(inx)].ls-1)
            //return query(R(inx),x)+query(L(inx),mid);
            return a[L(inx)].rs+a[R(inx)].ls;
        else
            return query(R(inx),x);
    }
}
int main()
{
    int n,m;
    while(~scanf("%d%d",&n,&m))
    {
        int tail=0;
        init(1,n,1);
        for(int i=0;i<m;i++)
        {
            char temp[2];
            scanf("%s",temp);
            if(temp[0]=='D')
            {
                int x;
                scanf("%d",&x);
                insert(1,x,0);
                sta[tail++]=x;
            }
            else if(temp[0]=='R')
            {
                if(tail-1>=0)
                    insert(1,sta[--tail],1);
            }
            else if(temp[0]=='Q')
            {
                int x;
                scanf("%d",&x);
                printf("%d\n",query(1,x));
            }
        }
    }
    return 0;
}

hdu 1540 Tunnel Warfare【线段树】,布布扣,bubuko.com

时间: 2024-10-10 23:07:44

hdu 1540 Tunnel Warfare【线段树】的相关文章

hdu 1540 Tunnel Warfare(线段树)

题目链接:hdu 1540 Tunnel Warfare 题目大意:有连续的N个城镇,三种操作: D x:第x城镇被破坏 Q x:插叙第x城镇所在联通块有多少个城镇没有被破坏 R:修复最后一个被破坏的城镇 解题思路:线段树区间合并,每个城镇看成一个叶子节点,用一个vector记录破坏顺序.对于查询来说,每次只要判断是否在mid?R[lson(u)],mid+L[rson(u)]之间即可,否则即递归查询左右子树. #include <cstdio> #include <cstring>

hdu 1540 Tunnel Warfare 线段树 单点更新,查询区间长度,区间合并

Tunnel Warfare Time Limit: 1 Sec  Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=1540 Description During the War of Resistance Against Japan, tunnel warfare was carried out extensively in the vast areas of north China Plain. Gene

HDU 1540 Tunnel Warfare 线段树区间合并

Tunnel Warfare 题意:D代表破坏村庄,R代表修复最后被破坏的那个村庄,Q代表询问包括x在内的最大连续区间是多少 思路:一个节点的最大连续区间由(左儿子的最大的连续区间,右儿子的最大连续区间,左儿子的最大连续右区间+右儿子的最大连续左区间)决定 所以线段树的节点应该维护当前节点的最大连续左区间,最大连续右区间,和最大连续区间. 注意更新的时候,如果左儿子全满,父亲节点的左连续区间还要加上右儿子的左区间.反之同理. 查询的时候,可以剪枝,如果是叶子,或为空,或满,则不用往下查询. 查询

HDU 1540 Tunnel Warfare(线段树单点更新+区间合并)

Problem Description During the War of Resistance Against Japan, tunnel warfare was carried out extensively in the vast areas of north China Plain. Generally speaking, villages connected by tunnels lay in a line. Except the two at the ends, every vill

HDU 1540 Tunnel Warfare (线段树或set水过)

题意:D代表破坏村庄,R代表修复最后被破坏的那个村庄,Q代表询问包括x在内的最大连续区间是多少. 析:首先可以用set水过,set用来记录每个被破坏的村庄,然后查找时,只要查找左右两个端点好. 用线段树的话,就维护三个值分别是左端点连续右端点连续,全连续的最长的区别,然后用线段树维护就好. 代码如下: set过: #pragma comment(linker, "/STACK:1024000000,1024000000") #include <cstdio> #includ

HDU 1540 Tunnel Warfare 线段树:单点更新,区间合并

Tunnel Warfare                                  Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Problem Description During the War of Resistance Against Japan, tunnel warfare was carried out extensively in the vast

HDU 1540 Tunnel Warfare(线段树 区间合并 最大连续区间)

题意  有n个连在一起的地道  接下来有m个操作  D x 炸掉x号地道  炸掉后x所在的区间就不连续了  Q x 查询输出包括x的最大连续区间长度   R修复最后一个被炸的地道  注意输入R时可能并没有需要修复的地道 线段树的区间合并问题  线段树要维护3个信息 len  对应区间的最大连续长度 ll  对应区间最左端的一段连续长度 lr  对应区间最右端的一段连续长度 那么双亲节点的这些信息和孩子节点有什么关系呢  容易发现 双亲的len 是 左孩子的len 右孩子的len  左孩子的右端长

hdu 1540 Tunnel Warfare 线段树 区间合并

题意: 三个操作符 D x:摧毁第x个隧道 R x:修复上一个被摧毁的隧道,将摧毁的隧道入栈,修复就出栈 Q x:查询x所在的最长未摧毁隧道的区间长度. 1.如果当前区间全是未摧毁隧道,返回长度 2.如果在坐儿子的右区间或右儿子的左区间,返回这两个区间长度和 3.继续递归 #include <bits/stdc++.h> #define lson l, m, rt<<1 #define rson m+1, r, rt<<1|1 using namespace std;

HDU 1540 &amp;&amp; POJ 2892 Tunnel Warfare (线段树,区间合并).

~~~~ 第一次遇到线段树合并的题,又被律爷教做人.TAT. ~~~~ 线段树的题意都很好理解吧.. 题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=1540 http://poj.org/problem?id=2892 ~~~~ 我的代码:200ms #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> #defin