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 village was directly connected with two neighboring ones.

Frequently the invaders launched attack on some of the villages and destroyed the parts of tunnels in them. The Eighth Route Army commanders requested the latest connection state of the tunnels and villages. If some villages are severely isolated, restoration of connection must be done immediately!

 
Input
The first line of the input contains two positive integers n and m (n, m ≤ 50,000) indicating the number of villages and events. Each of the next m lines describes an event.

There are three different events described in different format shown below:

D x: The x-th village was destroyed.

Q x: The Army commands requested the number of villages that x-th village was directly or indirectly connected with including itself.

R: The village destroyed last was rebuilt.

 
Output
Output the answer to each of the Army commanders’ request in order on a separate line.
 
Sample Input
7 9
D 3
D 6
D 5
Q 4
Q 5
R
Q
4
R
Q 4
 
Sample Output
1
0
2
4
题目大意:有n个村庄,初始的时候都连通,有m次操作,每一次不同的操作会改变村庄的连通情况或者是查询某个村庄的情况。
思路:啊!真的是蠢到家了,一开始想的是用线段树+二分来做,后头想了一想好像有点不对劲,明明线段树就是一次二分了,为啥还要加一重二分呢?。。。(我怕真是个傻子)
  后来借鉴了一下大佬的博客https://blog.csdn.net/libin56842/article/details/14105071 哎呀,用了肥虎之力,总算是把这个题给ac了。
  总的来说,在进行每一次点更新的时候我们维护三个值,对于当前的这个点,维护左边最大连续的区间,右边最大的连续区间,和当前最大的连续区间,在点更新的时候不断更新父亲节点的区间即可
 #include<iostream>
#include<algorithm>
#include<cstring>
#include<cstdio>
#include<stack> using namespace std;
const int maxn = ;
struct node{
int l,r;
int ls,rs,ms;//ls左端最大连续区间,rs右边最大连续区间,ms最大连续区间
}sum[maxn<<];
void build(int l,int r,int rt)
{
sum[rt].l=l;sum[rt].r=r;
sum[rt].ls=sum[rt].rs=sum[rt].ms=(r-l+);
if(l!=r){
int mid = (l+r)>>;
build(l,mid,rt<<);
build(mid+,r,rt<<|);
}
}
void update(int L,int R,int rt)
{
if(sum[rt].l==sum[rt].r){//单点更新操作的村庄
if(R==)
sum[rt].ls = sum[rt].rs = sum[rt].ms = ;
else
sum[rt].ls = sum[rt].rs = sum[rt].ms = ;
return;
}
int mid = (sum[rt].l+sum[rt].r)>>;
if(L<=mid) update(L,R,rt<<);//向左边找
else update(L,R,rt<<|);//右边找
//更新子区间之后再更新当前的区间
sum[rt].ls = sum[rt<<].ls;
sum[rt].rs = sum[rt<<|].rs;
sum[rt].ms = max(max(sum[rt<<].ms,sum[rt<<|].ms),sum[rt<<].rs+sum[rt<<|].ls);
if(sum[rt<<].ls==sum[rt<<].r-sum[rt<<].l+)//如果左子树满了需要加上右子树的左区间
sum[rt].ls += sum[rt<<|].ls;
if(sum[rt<<|].rs==sum[rt<<|].r-sum[rt<<|].l+)//同理
sum[rt].rs += sum[rt<<].rs;
}
int query(int L,int rt)
{
if(sum[rt].l==sum[rt].r||sum[rt].ms==||sum[rt].ms==(sum[rt].r-sum[rt].l+))
return sum[rt].ms;//返回的条件
int mid = (sum[rt].l+sum[rt].r)>>;
if(L<=mid){//如果要查的点再mid的左子树
if(L>=sum[rt<<].r-sum[rt<<].rs+)return query(L,rt<<)+query(mid+,rt<<|);//左区间已满需要加上右子树的左边
else return query(L,rt<<);//左子树未满,只需要加左子树的值
}else{
if(L<=sum[rt<<|].l+sum[rt<<|].ls-)return query(L,rt<<|)+query(mid,rt<<);//同理
else query(L,rt<<|);
}
}
int main()
{
int n,m,x;char op;
while(scanf("%d%d",&n,&m)!=EOF){
stack<int>Q;
build(,n,);
while(m--){
scanf(" %c",&op);//去掉行末换行符的影响
if(op=='D'){
scanf("%d",&x);
Q.push(x);
update(x,,);
}else if(op=='Q'){
scanf("%d",&x);
printf("%d\n",query(x,));
}else if(op=='R'){
if(!Q.empty()&&x>){
update(Q.top(),,);
Q.pop();
}
}
}
}
return ;
}

HDU 1540 Tunnel Warfare (线段树)的更多相关文章

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

    Tunnel Warfare Time Limit: 1 Sec  Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php?pi ...

  2. HDU 1540 Tunnel Warfare 线段树区间合并

    Tunnel Warfare 题意:D代表破坏村庄,R代表修复最后被破坏的那个村庄,Q代表询问包括x在内的最大连续区间是多少 思路:一个节点的最大连续区间由(左儿子的最大的连续区间,右儿子的最大连续区 ...

  3. hdu 1540 Tunnel Warfare(线段树区间统计)

    Tunnel Warfare Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) T ...

  4. HDU 1540 Tunnel Warfare (线段树)

    题目大意: n 个村庄排列在一条直线上,相邻的村庄有地道连接,除首尾两个村庄外,其余村庄都有两个相邻的村庄.其中有 3 中操作 D x :表示摧毁编号为 x 的村庄,Q x:表示求出包含村庄 x 的最 ...

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

    题意:D代表破坏村庄,R代表修复最后被破坏的那个村庄,Q代表询问包括x在内的最大连续区间是多少. 析:首先可以用set水过,set用来记录每个被破坏的村庄,然后查找时,只要查找左右两个端点好. 用线段 ...

  6. hdu 1540 Tunnel Warfare 线段树 区间合并

    题意: 三个操作符 D x:摧毁第x个隧道 R x:修复上一个被摧毁的隧道,将摧毁的隧道入栈,修复就出栈 Q x:查询x所在的最长未摧毁隧道的区间长度. 1.如果当前区间全是未摧毁隧道,返回长度 2. ...

  7. hdu 1540 Tunnel Warfare 线段数区间合并

    Tunnel Warfare Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) P ...

  8. HDU 1540 Tunnel Warfare(最长连续区间 基础)

    校赛,还有什么途径可以申请加入ACM校队?  Tunnel Warfare Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/ ...

  9. hdu 1540 Tunnel Warfare (区间线段树(模板))

    http://acm.hdu.edu.cn/showproblem.php?pid=1540 Tunnel Warfare Time Limit: 4000/2000 MS (Java/Others) ...

随机推荐

  1. 大数据技术之HBase

    第1章 HBase简介 1.1 什么是HBase HBase的原型是Google的BigTable论文,受到了该论文思想的启发,目前作为Hadoop的子项目来开发维护,用于支持结构化的数据存储. 官方 ...

  2. 【7.19 graphshortestpath graphallshortestpaths函数】matlab 求最短路径函数总结

    graphshortestpath 函数是用来解决最短路径问题的. 语法为: [dist, path, pred]=graphshortestpath(G,S) [dist, path, pred]= ...

  3. Linux平时常用命令_查看进程_监控日志等命令

    1.查进程     ps命令查找与进程相关的PID号:    ps a 显示现行终端机下的所有程序,包括其他用户的程序.    ps -A 显示所有程序.    ps c 列出程序时,显示每个程序真正 ...

  4. es6中的(=>)箭头函数

    x => x * x 上面的箭头函数相当于: function (x) { return x * x; } 箭头函数相当于匿名函数,并且简化了函数定义. 箭头函数有两种格式,一种像上面的,只包含 ...

  5. 自定义连接池DataSourse

    自定义连接池DataSourse 连接池概述: 管理数据库的连接, 作用: 提高项目的性能.就是在连接池初始化的时候存入一定数量的连接,用的时候通过方法获取,不用的时候归还连接即可.所有的连接池必须实 ...

  6. hdu4313 贪心+并查集

    题意简单思路也还可以.开始从小到大排序非常烦.后来从大到小就很简单了: 从大到小解决了删除的边最小. #include<stdio.h> #include<string.h> ...

  7. 2019-8-31-C#-通过-probing-指定-dll-寻找文件夹

    title author date CreateTime categories C# 通过 probing 指定 dll 寻找文件夹 lindexi 2019-08-31 16:55:58 +0800 ...

  8. python 语法错误

  9. HDU_1061:Rightmost Digit

    Problem Description Given a positive integer N, you should output the most right digit of N^N.   Inp ...

  10. nodeJs学习-07 express、body-parser;链式操作next

    express和body-parser   const express=require('express'); const bodyParser=require('body-parser'); var ...