热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

POJ题目2892TunnelWarfare(线段树单点更新查询,求单点所在最大连续区间长度)

TunnelWarfareTimeLimit:1000MS MemoryLimit:131072KTotalSubmissions:7307

Tunnel Warfare















Time Limit: 1000MS   Memory Limit: 131072K
Total Submissions: 7307   Accepted: 2997


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:



  1. D x: The x-th village was destroyed.
  2. Q x: The Army commands requested the number of villages that x-th village was directly or indirectly connected with including itself.
  3. 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


ac代码


#include
#include
#define max(a,b) (a>b?a:b)
struct s
{
int rl,ll,ml;
}node[50500<<2];
int stack[50500],top;
void build(int l,int r,int tr)
{
node[tr].ll=node[tr].rl=node[tr].ml=r-l+1;
if(l==r)
return;
int mid=(l+r)>>1;
build(l,mid,tr<<1);
build(mid+1,r,tr<<1|1);
}
void update(int pos,int l,int r,int tr,int val)
{
if(l==r)
{
if(val)
node[tr].ll=node[tr].rl=node[tr].ml=1;
else
node[tr].ll=node[tr].rl=node[tr].ml=0;
return;
}
int mid=(l+r)>>1;
if(pos<=mid)
{
update(pos,l,mid,tr<<1,val);
}
else
update(pos,mid+1,r,tr<<1|1,val);
node[tr].ll=node[tr<<1].ll;
node[tr].rl=node[tr<<1|1].rl;
node[tr].ml=max(node[tr<<1].ml,node[tr<<1|1].ml);
node[tr].ml=max(node[tr].ml,node[tr<<1].rl+node[tr<<1|1].ll);
if(node[tr<<1].ll==mid-l+1)
node[tr].ll+=node[tr<<1|1].ll;
if(node[tr<<1|1].rl==r-(mid+1)+1)
node[tr].rl+=node[tr<<1].rl;
}
int query(int pos,int l,int r,int tr)
{
if(l==r||node[tr].ml==0||node[tr].ml==r-l+1)
{
return node[tr].ml;
}
int mid=(l+r)>>1;
if(pos<=mid)
{
if(pos>=mid-node[tr<<1].rl+1)
return query(pos,l,mid,tr<<1)+query(mid+1,mid+1,r,tr<<1|1);
return query(pos,l,mid,tr<<1);
}
else
{
if(pos<=mid+1+node[tr<<1|1].ll-1)
return query(pos,mid+1,r,tr<<1|1)+query(mid,l,mid,tr<<1);
return query(pos,mid+1,r,tr<<1|1);
}
}
int main()
{
int n,m;
while(scanf("%d%d",&n,&m)!=EOF)
{
build(1,n,1);
top=0;
while(m--)
{
char s[2];
int x;
scanf("%s",s);
if(s[0]==&#39;D&#39;)
{
scanf("%d",&x);
stack[top++]=x;
update(x,1,n,1,0);
}
else
{
if(s[0]==&#39;Q&#39;)
{
int x;
scanf("%d",&x);
int ans=query(x,1,n,1);
printf("%d\n",ans);
}
else
{
int x=stack[top-1];
top--;
update(x,1,n,1,1);
}
}
}
}
}







版权声明:本文为博主原创文章,未经博主允许不得转载。


POJ 题目2892 Tunnel Warfare(线段树单点更新查询,求单点所在最大连续区间长度)



推荐阅读
  • MySQL中枚举类型的所有可能值获取方法
    本文介绍了一种在MySQL数据库中查询枚举(ENUM)类型字段所有可能取值的方法,帮助开发者更好地理解和利用这一数据类型。 ... [详细]
  • QUIC协议:快速UDP互联网连接
    QUIC(Quick UDP Internet Connections)是谷歌开发的一种旨在提高网络性能和安全性的传输层协议。它基于UDP,并结合了TLS级别的安全性,提供了更高效、更可靠的互联网通信方式。 ... [详细]
  • 深入理解OAuth认证机制
    本文介绍了OAuth认证协议的核心概念及其工作原理。OAuth是一种开放标准,旨在为第三方应用提供安全的用户资源访问授权,同时确保用户的账户信息(如用户名和密码)不会暴露给第三方。 ... [详细]
  • CSS 布局:液态三栏混合宽度布局
    本文介绍了如何使用 CSS 实现液态的三栏布局,其中各栏具有不同的宽度设置。通过调整容器和内容区域的属性,可以实现灵活且响应式的网页设计。 ... [详细]
  • 本文介绍如何在 Xcode 中使用快捷键和菜单命令对多行代码进行缩进,包括右缩进和左缩进的具体操作方法。 ... [详细]
  • 本文介绍了一款用于自动化部署 Linux 服务的 Bash 脚本。该脚本不仅涵盖了基本的文件复制和目录创建,还处理了系统服务的配置和启动,确保在多种 Linux 发行版上都能顺利运行。 ... [详细]
  • 本章将深入探讨移动 UI 设计的核心原则,帮助开发者构建简洁、高效且用户友好的界面。通过学习设计规则和用户体验优化技巧,您将能够创建出既美观又实用的移动应用。 ... [详细]
  • 2023 ARM嵌入式系统全国技术巡讲旨在分享ARM公司在半导体知识产权(IP)领域的最新进展。作为全球领先的IP提供商,ARM在嵌入式处理器市场占据主导地位,其产品广泛应用于90%以上的嵌入式设备中。此次巡讲将邀请来自ARM、飞思卡尔以及华清远见教育集团的行业专家,共同探讨当前嵌入式系统的前沿技术和应用。 ... [详细]
  • 国内BI工具迎战国际巨头Tableau,稳步崛起
    尽管商业智能(BI)工具在中国的普及程度尚不及国际市场,但近年来,随着本土企业的持续创新和市场推广,国内主流BI工具正逐渐崭露头角。面对国际品牌如Tableau的强大竞争,国内BI工具通过不断优化产品和技术,赢得了越来越多用户的认可。 ... [详细]
  • 深入理解 Oracle 存储函数:计算员工年收入
    本文介绍如何使用 Oracle 存储函数查询特定员工的年收入。我们将详细解释存储函数的创建过程,并提供完整的代码示例。 ... [详细]
  • 理解存储器的层次结构有助于程序员优化程序性能,通过合理安排数据在不同层级的存储位置,提升CPU的数据访问速度。本文详细探讨了静态随机访问存储器(SRAM)和动态随机访问存储器(DRAM)的工作原理及其应用场景,并介绍了存储器模块中的数据存取过程及局部性原理。 ... [详细]
  • 几何画板展示电场线与等势面的交互关系
    几何画板是一款功能强大的物理教学软件,具备丰富的绘图和度量工具。它不仅能够模拟物理实验过程,还能通过定量分析揭示物理现象背后的规律,尤其适用于难以在实际实验中展示的内容。本文将介绍如何使用几何画板演示电场线与等势面之间的关系。 ... [详细]
  • 本文介绍如何通过Windows批处理脚本定期检查并重启Java应用程序,确保其持续稳定运行。脚本每30分钟检查一次,并在需要时重启Java程序。同时,它会将任务结果发送到Redis。 ... [详细]
  • 本文介绍如何在应用程序中使用文本输入框创建密码输入框,并通过设置掩码来隐藏用户输入的内容。我们将详细解释代码实现,并提供专业的补充说明。 ... [详细]
  • 本文介绍如何通过SQL查询从JDE(JD Edwards)系统中提取所有字典数据,涵盖关键表的关联和字段选择。具体包括F0004和F0005系列表的数据提取方法。 ... [详细]
author-avatar
Bleach1121
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有