poj 2892Tunnel Warfare 二分+树状数组

Posted ALPS233

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poj 2892Tunnel Warfare 二分+树状数组相关的知识,希望对你有一定的参考价值。

Tunnel Warfare
Time Limit: 1000MS Memory Limit: 131072K
Total Submissions: 7576 Accepted: 3127

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

Source
POJ Monthly–2006.07.30, updog

题目链接http://poj.org/problem?id=2892

题意:有n个村庄进行m次操作,有三种操作

D x:表示摧毁一个村庄

Q x:表示查询一个村庄左右连续的存在的村庄个数,若该村庄不存在为0

R:表示修复上一个被摧毁的村庄

思路
树状数组维护类似前缀和的东西;二分判定是否连续有村庄
O(mlogn^2)

求左为例
如图:这里写图片描述

Created with Raphaël 2.1.0 开始 rx=x; lx=1; if(_get(rx)-_get(mid-1)==rx-mid+1) 确认? ans=mid; rx=mid-1; rx>=lx? again 结束; lx=mid+1; yes no yes no

以上是关于poj 2892Tunnel Warfare 二分+树状数组的主要内容,如果未能解决你的问题,请参考以下文章

poj2892 Tunnel Warfare

POJ2892 Tunnel Warfare

POJ2892 Tunnel Warfare

POJ 2892 Tunnel Warfare(线段树单点更新区间合并)

POJ2892 Tunnel Warfare 题解

hdu 1540/POJ 2892 Tunnel Warfare 线段树区间合并