POJ 2892 Tunnel Warfare(线段树单点更新区间合并)
Time Limit: 1000MS | Memory Limit: 131072K | |
Total Submissions: 7876 | Accepted: 3259 |
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
Hint
An illustration of the sample input:
OOOOOOO D 3 OOXOOOO D 6 OOXOOXO D 5 OOXOXXO R OOXOOXO R OOXOOOO
题目链接:POJ 2892
线段树的区间合并操作相比其他区间操作稍微难理解,但是还是可以写的一下的,主要就是对pushup和query的修改
做法就是seg数据里记录当前区间从左边即seg::l 开始向右连续连通长度,记为L,从右边seg::r 开始的向左连续连通长度,记为R。用seg::M表示是区间中最大的连续连通长度,显然M应该有三种情况,要么为L要么为R要么为左子树的R+右子树的L,最后的情况是必然会要比较的,但是前两种不一定会出现,比如左子树的L并没有达到父节点的mid即左子树的r,因此中间断开了,父节点的L仍时保持为左子树的L,父节点的R也相同道理,然后三者取一个最大的就得到了父节点的M,然后是L和R如何更新就看左子树的L和右子树的R是否完全覆盖了子区间,若完全覆盖则父节点的L与R可以拓展延长……
还有就是查询的时候加一个剪枝条件不然容易TLE,若当前区间已经完全覆盖或者最大连通长度M为0显然是不需要再递归查询的直接返回即可。
代码:
#include <stdio.h>
#include <iostream>
#include <algorithm>
#include <cstdlib>
#include <sstream>
#include <numeric>
#include <cstring>
#include <bitset>
#include <string>
#include <deque>
#include <stack>
#include <cmath>
#include <queue>
#include <set>
#include <map>
using namespace std;
#define INF 0x3f3f3f3f
#define LC(x) (x<<1)
#define RC(x) ((x<<1)+1)
#define MID(x,y) ((x+y)>>1)
#define CLR(arr,val) memset(arr,val,sizeof(arr))
#define FAST_IO ios::sync_with_stdio(false);cin.tie(0);
typedef pair<int,int> pii;
typedef long long LL;
const double PI=acos(-1.0);
const int N=50010;
struct seg
{
int l,mid,r;
int L,M,R;
int len;
};
seg T[N<<2];
int st[N],top; inline void pushup(int k)
{
T[k].L=T[LC(k)].L;
T[k].R=T[RC(k)].R; if(T[k].L==T[LC(k)].len)
T[k].L+=T[RC(k)].L;
if(T[k].R==T[RC(k)].len)
T[k].R+=T[LC(k)].R; T[k].M=max<int>(T[LC(k)].R+T[RC(k)].L,max<int>(T[LC(k)].M,T[RC(k)].M));
}
void build(int k,int l,int r)
{
T[k].l=l;
T[k].r=r;
T[k].mid=MID(l,r);
T[k].len=r-l+1;
T[k].L=T[k].R=T[k].M=r-l+1;
if(l==r)
return ;
build(LC(k),l,T[k].mid);
build(RC(k),T[k].mid+1,r);
}
void update(int k,int x,char flag)
{
if(T[k].l==T[k].r)
{
if(flag=='D')
T[k].L=T[k].R=T[k].M=0;
else
T[k].L=T[k].R=T[k].M=1;
}
else
{
if(x<=T[k].mid)
update(LC(k),x,flag);
else
update(RC(k),x,flag);
pushup(k);
}
}
int query(int k,int x)
{
if(T[k].M==T[k].len||!T[k].M||T[k].len==1)
return T[k].M;
else
{
if(x<=T[k].mid)
{
if(x>=T[k].mid+1-T[LC(k)].R)
return query(LC(k),x)+query(RC(k),T[k].mid+1);
else
return query(LC(k),x);
}
else
{
if(x<=T[k].mid+T[RC(k)].L)
return query(LC(k),T[k].mid)+query(RC(k),x);
else
return query(RC(k),x);
}
}
}
int main(void)
{
char ops[3];
int n,m,x;
while (~scanf("%d%d",&n,&m))
{
top=0;
build(1,1,n);
while (m--)
{
scanf("%s",ops);
if(ops[0]=='D')
{
scanf("%d",&x);
update(1,st[top++]=x,'D');
}
else if(ops[0]=='Q')
{
scanf("%d",&x);
printf("%d\n",query(1,x));
}
else
update(1,st[--top],'R');
}
}
return 0;
}
POJ 2892 Tunnel Warfare(线段树单点更新区间合并)的更多相关文章
- hdu 1540 Tunnel Warfare 线段树 单点更新,查询区间长度,区间合并
Tunnel Warfare Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php?pi ...
- hdu1540之线段树单点更新+区间合并
Tunnel Warfare Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) T ...
- HDU 3308 LCIS(线段树单点更新区间合并)
LCIS Given n integers. You have two operations: U A B: replace the Ath number by B. (index counting ...
- hdu 5316 Magician(2015多校第三场第1题)线段树单点更新+区间合并
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5316 题意:给你n个点,m个操作,每次操作有3个整数t,a,b,t表示操作类型,当t=1时讲a点的值改 ...
- POJ.3321 Apple Tree ( DFS序 线段树 单点更新 区间求和)
POJ.3321 Apple Tree ( DFS序 线段树 单点更新 区间求和) 题意分析 卡卡屋前有一株苹果树,每年秋天,树上长了许多苹果.卡卡很喜欢苹果.树上有N个节点,卡卡给他们编号1到N,根 ...
- POJ.2299 Ultra-QuickSort (线段树 单点更新 区间求和 逆序对 离散化)
POJ.2299 Ultra-QuickSort (线段树 单点更新 区间求和 逆序对 离散化) 题意分析 前置技能 线段树求逆序对 离散化 线段树求逆序对已经说过了,具体方法请看这里 离散化 有些数 ...
- HDU.1394 Minimum Inversion Number (线段树 单点更新 区间求和 逆序对)
HDU.1394 Minimum Inversion Number (线段树 单点更新 区间求和 逆序对) 题意分析 给出n个数的序列,a1,a2,a3--an,ai∈[0,n-1],求环序列中逆序对 ...
- hdu 1166线段树 单点更新 区间求和
敌兵布阵 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submis ...
- hdu1166(线段树单点更新&区间求和模板)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1166 题意:中文题诶- 思路:线段树单点更新,区间求和模板 代码: #include <iost ...
随机推荐
- 【USACO】calfflac
关键:以回文中心位置为变量进行遍历 //必须把纯字母先提出来 否则肯能会出现错误 比如: lvlv= 在检查长度4时 lvlv认为不是回文 vlv=认为是回文 但实际上 lvl 出现的要更早一些 // ...
- [Android Pro] android 混淆文件project.properties和proguard-project.txt
参考文档:http://blog.csdn.net/xueyepiaoling/article/details/8202359转载自:http://glblong.blog.51cto.com/305 ...
- windows 说“我爱你”
CreateObject("SAPI.SpVoice").Speak "I love YOU" 保存vbs
- WIN7实现多人远程一台电脑
今天查了查网,发现有人说,WIN7可以实现多人远程一台电脑,于是乎我就试了试, 在工作办公室里的局域网里试了试,嘿,成功了,愿与大家分享一下,呵呵! 方法一: 多用户早就能破解了 方法如下:用UE打开 ...
- linux 创建连接命令 ln -s 软链接
这是linux中一个非常重要命令,请大家一定要熟悉.它的功能是为某一个文件在另外一个位置建立一个同不的链接,这个命令最常用的参数是-s, 具体用法是:ln -s 源文件 目标文件. 当 我们需要在不同 ...
- JUC回顾之-Semaphore底层实现和原理
1.控制并发线程数的Semaphore Semaphore(信号量)是用来控制同时访问特定资源的线程数量,它通过协调各个线程,保证合理的使用公共资源. 线程可以通过acquire()方法来获取信号量的 ...
- 编辑WCF配置不出现
在使用VS2010创建
- Android UI组件学习
android.view.View类是全部UI组件的父类. 如果一些属性的内容本类找不到的时候一定要到父类之中进行查找. 所谓的学习组件的过程就是一个文档的查找过程. ※ Android之中所有的组件 ...
- POJ 2752 Seek the Name, Seek the Fame kmp(后缀与前缀)
题意: 给你一个串T,找出串T的子串,该串既是T的前缀也是T的后缀.从小到大输出所有符合要求的串的长度. 分析: 首先要知道KMP的next[i]数组求得的数值就是串T中的[1,i-1]的后缀与串T中 ...
- loj 1168(Tarjan应用)
题目链接:http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=26882 思路:一开始把题意理解错了,还以为是简单路径,然后仔细一看 ...