[POJ2892]Tunnel Warfare
[POJ2892]Tunnel Warfare
试题描述
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!
输入
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 the answer to each of the Army commanders’ request in order on a separate line.
输入示例
D
D
D
Q
Q
R
Q
R
Q
输出示例
数据规模及约定
见“输入”
题解
黄学长这题用的 treap,然而我觉得这题是线段树裸题。。。
对于每个点维护它最左边的未被摧毁的村庄和最右边的未被摧毁的村庄的编号,然后是区间赋值、单点查询操作。
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cctype>
#include <algorithm>
using namespace std; int read() {
int x = 0, f = 1; char c = getchar();
while(!isdigit(c)){ if(c == '-') f = -1; c = getchar(); }
while(isdigit(c)){ x = x * 10 + c - '0'; c = getchar(); }
return x * f;
} #define maxn 50010
int n, lp[maxn<<2], rp[maxn<<2], sl[maxn<<2], sr[maxn<<2];
void build(int L, int R, int o) {
if(L == R) lp[o] = 1, rp[o] = n;
else {
int M = L + R >> 1, lc = o << 1, rc = lc | 1;
build(L, M, lc); build(M+1, R, rc);
}
return ;
}
void pushdown(int o) {
int lc = o << 1, rc = lc | 1;
if(lc >= (maxn << 2)) lc = 0; if(rc >= (maxn << 2)) rc = 0;
if(sl[o]) lp[o] = sl[lc] = sl[rc] = sl[o], sl[o] = 0;
if(sr[o]) rp[o] = sr[lc] = sr[rc] = sr[o], sr[o] = 0;
sl[0] = sr[0] = 0;
return ;
}
int ql, qr;
void update(int L, int R, int o, int tl, int tr) {
pushdown(o);
if(ql <= L && R <= qr) sl[o] = tl, sr[o] = tr;
else {
int M = L + R >> 1, lc = o << 1, rc = lc | 1;
if(ql <= M) update(L, M, lc, tl, tr);
if(qr > M) update(M+1, R, rc, tl, tr);
}
return ;
}
int al, ar;
void query(int L, int R, int o) {
pushdown(o);
if(L == R) al = lp[o], ar = rp[o];
else {
int M = L + R >> 1, lc = o << 1, rc = lc | 1;
if(ql <= M) query(L, M, lc);
else query(M+1, R, rc);
}
return ;
} int Cmd[maxn], top, has[maxn];
int main() {
n = read();
int q = read(); build(1, n, 1);
while(q--) {
char tp[2]; scanf("%s", tp); int p;
if(tp[0] == 'D') {
p = read(); has[p]++; Cmd[++top] = p;
ql = p; query(1, n, 1);
if(al <= p - 1) ql = al, qr = p - 1, update(1, n, 1, al, p - 1);
if(p + 1 <= ar) ql = p + 1, qr = ar, update(1, n, 1, p + 1, ar);
ql = qr = p; update(1, n, 1, p + 1, p - 1);
}
if(tp[0] == 'Q') ql = read(), query(1, n, 1), printf("%d\n", !has[ql] ? ar - al + 1 : 0);
if(tp[0] == 'R') {
if(!top) continue;
p = Cmd[top--]; has[p]--;
if(has[p]) continue;
int l, r;
if(p > 1) ql = p - 1, query(1, n, 1), l = al;
else l = 1;
if(p < n) ql = p + 1, query(1, n, 1), r = ar;
else r = n;
ql = l; qr = r; update(1, n, 1, l, r);
}
} return 0;
}
然而我并不了解用 treap 的做法。。。
[POJ2892]Tunnel Warfare的更多相关文章
- hdu1540 Tunnel Warfare
Tunnel Warfare Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)To ...
- HDU 1540 Tunnel Warfare 平衡树 / 线段树:单点更新,区间合并
Tunnel Warfare Time Limit: 4000/2000 MS (Java/Others) Memory Lim ...
- POJ 2892 Tunnel Warfare(线段树单点更新区间合并)
Tunnel Warfare Time Limit: 1000MS Memory Limit: 131072K Total Submissions: 7876 Accepted: 3259 D ...
- HDU 1540 Tunnel Warfare 线段树区间合并
Tunnel Warfare 题意:D代表破坏村庄,R代表修复最后被破坏的那个村庄,Q代表询问包括x在内的最大连续区间是多少 思路:一个节点的最大连续区间由(左儿子的最大的连续区间,右儿子的最大连续区 ...
- hdu 1540 Tunnel Warfare (区间线段树(模板))
http://acm.hdu.edu.cn/showproblem.php?pid=1540 Tunnel Warfare Time Limit: 4000/2000 MS (Java/Others) ...
- poj 2892 Tunnel Warfare(线段树)
Tunnel Warfare Time Limit: 1000MS Memory Limit: 131072K Total Submissions: 7499 Accepted: 3096 D ...
- HDU-1540 Tunnel Warfare
Tunnel Warfare Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)To ...
- hdu 1540 Tunnel Warfare(线段树区间统计)
Tunnel Warfare Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) T ...
- HDU 1540 Tunnel Warfare(最长连续区间 基础)
校赛,还有什么途径可以申请加入ACM校队? Tunnel Warfare Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/ ...
随机推荐
- python和numpy的版本、安装位置
命令行下查看python和numpy的版本和安装位置 1.查看python版本 方法一: python -V 注意:‘-V‘中‘V’为大写字母,只有一个‘-’ 方法二: python --versio ...
- 添加JavaScrip
本章内容: 加载外部脚本:添加嵌入脚本:JavaScrip事件 1,脚本类型:外部文件(使用纯文本格式)加载的脚本:嵌入在页面中的脚本. 加载外部脚本的方法 <body><scrip ...
- os模块之popen
想查看当前目录下有哪些东西,可以使用os.popen()方法,代码如下: t = (os.popen("dir")) print(t.read()) #运行结果 C:\python ...
- C# C++联调
http://jingyan.baidu.com/article/fcb5aff7926344edab4a714d.html
- XtraFinder在OSX10.11的使用
重启系统,按住command键加上R键 进入恢复模式还是什么模式里,然后启动terminal 然后键入 csrutil enable --without debug 重启电脑,可正常使用 居然上传不了 ...
- OC-基本
#import <Foundation/NSObjCRuntime.h> //import: //1,同#include一样, 拷贝文件内容 //2,可以自动防止文件的内容被重复拷贝 /* ...
- 未能加载文件或程序集“MySQLDriverCS
未能加载文件或程序集“MySQLDriverCS, Version=3.0.1735.36021, Culture=neutral, PublicKeyToken=172f94dfb0faf263”或 ...
- redis使用watch完成秒杀抢购功能(转)
redis使用watch完成秒杀抢购功能: 使用redis中两个key完成秒杀抢购功能,mywatchkey用于存储抢购数量和mywatchlist用户存储抢购列表. 它的优点如下: 1. 首先选用内 ...
- cas单点登录 SSO 的实现原理
原文出处: cutesource 欢迎分享原创到伯乐头条 单点登录SSO(Single Sign On)说得简单点就是在一个多系统共存的环境下,用户在一处登录后,就不用在其他系统中登录,也就是用户 ...
- ubuntu系统无法访问无法磁盘最佳解决办法
出现如下错误: Error mounting /dev/sda8 at /media/fzh/System: Command-line `mount -t "ntfs" -o &q ...