题目大意:维护一个序列,支持区间插入,区间删除,区间翻转,查询区间元素和,查询区间最大子段和操作。

题解:毒瘤题。。。QAQ打完这道题发现自己以前学了一个假的 Splay。。

对于区间操作,用 splay 处理是比较优先的选择。取出一段区间 [l,r] 的方式为:将 l-1 旋转到根节点,将 r+1 旋转到根节点的右儿子节点,这样根节点的右儿子的左儿子组成的子树即是取出来一段连续区间,可以很方便对区间进行查询或打标记。

需要注意如下几点:

  1. Splay 等平衡树不是 leafy tree,即:每个节点也维护了一个独一无二的信息,因此 pushup 操作也应该将自己节点维护的信息计入答案。
  2. 平衡树不是 leafy tree,因此标记上传和下传时一定要考虑空节点的影响,即:0 号节点维护的值对答案是否有影响,这道题若 0 号节点维护的最大子段和为 0,那么对答案显然产生了错误的影响。
  3. 对于为了避免条件判断而加入的序列头部和尾部的虚拟节点,同样也要避免其维护的值对答案产生错误的贡献,因此也要纳入考虑。
  4. 每次区间操作后,记得 pushup 父节点和根节点,及时将信息上传。
  5. 这道题卡空间,因此采用了内存回收机制。即:用一个队列来回收已经被删掉的节点,分配新节点的时候可以从队列中取出节点的编号进行分配。

代码如下

#include <bits/stdc++.h>
using namespace std;
const int maxn=5e5+10;
const int inf=1e7; inline int read(){
int x=0,f=1;char ch;
do{ch=getchar();if(ch=='-')f=-1;}while(!isdigit(ch));
do{x=x*10+ch-'0';ch=getchar();}while(isdigit(ch));
return f*x;
} char s[20];
int n,m,a[maxn];
struct node{
#define ls(x) t[x].ch[0]
#define rs(x) t[x].ch[1]
int ch[2],fa,val,size,lmx,rmx,mx,sum;
bool rev,tag;
}t[maxn];
int tot,root;
queue<int> q;
inline int newnode(){
if(q.empty())return ++tot;
int o=q.front();q.pop();
return o;
}
inline bool get(int o){return o==rs(t[o].fa);}
inline void pushup(int o){
t[o].sum=t[ls(o)].sum+t[rs(o)].sum+t[o].val;
t[o].lmx=max(t[ls(o)].lmx,t[ls(o)].sum+t[o].val+t[rs(o)].lmx);
t[o].rmx=max(t[rs(o)].rmx,t[rs(o)].sum+t[o].val+t[ls(o)].rmx);
t[o].mx=max(max(t[ls(o)].mx,t[rs(o)].mx),t[ls(o)].rmx+t[o].val+t[rs(o)].lmx);
t[o].size=t[ls(o)].size+t[rs(o)].size+1;
}
inline void pushdown(int o){
if(t[o].tag){
t[o].tag=0;
if(ls(o))t[ls(o)].tag=1,t[ls(o)].val=t[o].val,t[ls(o)].sum=t[ls(o)].val*t[ls(o)].size;
if(rs(o))t[rs(o)].tag=1,t[rs(o)].val=t[o].val,t[rs(o)].sum=t[rs(o)].val*t[rs(o)].size;
if(t[o].val>=0){
if(ls(o))t[ls(o)].lmx=t[ls(o)].rmx=t[ls(o)].mx=t[ls(o)].sum;
if(rs(o))t[rs(o)].lmx=t[rs(o)].rmx=t[rs(o)].mx=t[rs(o)].sum;
}else{
if(ls(o))t[ls(o)].lmx=t[ls(o)].rmx=0,t[ls(o)].mx=t[ls(o)].val;
if(rs(o))t[rs(o)].lmx=t[rs(o)].rmx=0,t[rs(o)].mx=t[rs(o)].val;
}
}
if(t[o].rev){
t[o].rev=0,t[ls(o)].rev^=1,t[rs(o)].rev^=1;
swap(t[ls(o)].lmx,t[ls(o)].rmx),swap(t[rs(o)].lmx,t[rs(o)].rmx);
swap(ls(ls(o)),rs(ls(o))),swap(ls(rs(o)),rs(rs(o)));
}
}
inline void rotate(int o){
int fa=t[o].fa,gfa=t[fa].fa,d1=get(o),d2=get(fa);
t[fa].ch[d1]=t[o].ch[d1^1],t[t[o].ch[d1^1]].fa=fa;
t[o].ch[d1^1]=fa,t[fa].fa=o;
t[o].fa=gfa,t[gfa].ch[d2]=o;
pushup(fa),pushup(o);
}
inline void splay(int o,int goal){
while(t[o].fa!=goal){
int fa=t[o].fa,gfa=t[fa].fa;
if(gfa!=goal)get(o)==get(fa)?rotate(fa):rotate(o);
rotate(o);
}
if(!goal)root=o;
}
inline int find(int o,int k){
pushdown(o);
if(k<=t[ls(o)].size)return find(ls(o),k);
else if(k>t[ls(o)].size+1)return find(rs(o),k-t[ls(o)].size-1);
else return o;
}
inline void recycle(int o){
if(ls(o))recycle(ls(o));
if(rs(o))recycle(rs(o));
t[o].ch[0]=t[o].ch[1]=t[o].fa=t[o].val=t[o].size=t[o].lmx=t[o].rmx=t[o].mx=t[o].sum=t[o].rev=t[o].tag=0;
q.push(o);
}
inline int split(int l,int r){
int x=find(root,l-1),y=find(root,r+1);
splay(x,0),splay(y,x);
return ls(y);
}
int build(int fa,int l,int r){
if(l>r)return 0;
int o=newnode();
int mid=l+r>>1;
t[o].fa=fa,t[o].val=t[o].sum=a[mid],t[o].size=1,t[o].lmx=t[o].rmx=max(t[o].val,0);
ls(o)=build(o,l,mid-1),rs(o)=build(o,mid+1,r);
return pushup(o),o;
} int main(){
n=read(),m=read();
a[1]=a[n+2]=t[0].mx=-inf;
for(int i=2;i<=n+1;i++)a[i]=read();
root=build(0,1,n+2);
while(m--){
scanf("%s",s);
if(s[0]=='I'){
int pos=read(),num=read();
for(int i=1;i<=num;i++)a[i]=read();
int rt=build(0,1,num);
int x=find(root,pos+1),y=find(root,pos+2);
splay(x,0),splay(y,x);
t[rt].fa=y,ls(y)=rt;
pushup(y),pushup(x);
}
else if(s[0]=='D'){
int pos=read(),num=read();
int o=split(pos+1,pos+num),fa=t[o].fa;
ls(fa)=0,recycle(o);
pushup(fa),pushup(t[fa].fa);
}
else if(s[0]=='R'){
int pos=read(),num=read();
int o=split(pos+1,pos+num),fa=t[o].fa;
t[o].rev^=1;
swap(ls(o),rs(o));
swap(t[o].lmx,t[o].rmx);
pushup(fa),pushup(t[fa].fa);
}
else if(s[0]=='G'){
int pos=read(),num=read();
int o=split(pos+1,pos+num);
printf("%d\n",t[o].sum);
}
else if(s[0]=='M'&&s[2]=='K'){
int pos=read(),num=read(),val=read();
int o=split(pos+1,pos+num),fa=t[o].fa;
t[o].val=val,t[o].tag=1,t[o].sum=t[o].val*t[o].size;
if(t[o].val>=0)t[o].lmx=t[o].rmx=t[o].mx=t[o].sum;
else t[o].mx=t[o].val,t[o].lmx=t[o].rmx=0;
pushup(fa),pushup(t[fa].fa);
}
else if(s[0]=='M'&&s[2]=='X'){
printf("%d\n",t[root].mx);
}
}
return 0;
}

【洛谷P2042】维护数列的更多相关文章

  1. 洛谷 P2042 维护数列

    http://blog.csdn.net/drazxlnddt/article/details/51051598 flip为true表示以当前节点为根的子树需要交换.set为true表示以当前节点为根 ...

  2. 洛谷 P2042 [NOI2005]维护数列-Splay(插入 删除 修改 翻转 求和 最大的子序列)

    因为要讲座,随便写一下,等讲完有时间好好写一篇splay的博客. 先直接上题目然后贴代码,具体讲解都写代码里了. 参考的博客等的链接都贴代码里了,有空再好好写. P2042 [NOI2005]维护数列 ...

  3. [洛谷P3228] [HNOI2013]数列

    洛谷题目链接:[HNOI2013]数列 题目描述 小T最近在学着买股票,他得到内部消息:F公司的股票将会疯涨.股票每天的价格已知是正整数,并且由于客观上的原因,最多只能为N.在疯涨的K天中小T观察到: ...

  4. BZOJ 1500 洛谷2042维护序列题解

    BZ链接 洛谷链接 这道题真是丧心病狂.... 应该很容易就可以看出做法,但是写代码写的....... 思路很简单,用一个平衡树维护一下所有的操作就好了,重点讲解一下代码的细节 首先如果按照常规写法的 ...

  5. 【洛谷 P1667】 数列 (贪心)

    题目链接 对于一个区间\([x,y]\),设这个区间的总和为\(S\) 那么我们在前缀和(设为\(sum[i]\))的意义上考虑到原操作其实就是\(sum[x−1]+=S\) , \(sum[x]+S ...

  6. 洛谷 P2042 【[NOI2005]维护数列】

    一直在想要做这道题,但是被那个硕大的Splay标签压垮了 好了,切入正题 这道题应该是我第二次用splay来维护区间问题 我还是太菜了QAQ 其实思路也很简单,就是以每一个位置的下标来进行维护,然后其 ...

  7. 洛谷P2042 [NOI2005]维护数列

    #include<cstdio> #include<cstdlib> #include<algorithm> #include<cstring> #in ...

  8. 【洛谷 P2042】 [NOI2005]维护数列(自闭记第一期)

    题目链接 首先,这题我是没A的..太毒瘤了 题目本身不难,都是\(Splay\)的基操,但是细节真的容易挂. 调了好久自闭了,果断放弃.. 希望本节目停更. 放上最终版本 #include <c ...

  9. 洛谷P1415 拆分数列[序列DP 状态 打印]

    题目背景 [为了响应党中央勤节俭.反铺张的精神,题目背景描述故事部分略去^-^] 题目描述 给出一列数字,需要你添加任意多个逗号将其拆成若干个严格递增的数.如果有多组解,则输出使得最后一个数最小的同时 ...

随机推荐

  1. MongoDB操作(1)—MongoDB java驱动核心层次结构及操作流程

    MongoDB之java驱动学习 预备: 本地运行MongoDB采用默认端口20717: 安装MongoDB驱动: 以下关键步骤. 核心层次结构或步骤: 创建连接池:MongoClient实例. 对于 ...

  2. cookie,localStorage和sessionStorage区别

    三者的异同 特性 Cookie localStorage sessionStorage 数据的生命期 一般由服务器生成,可设置失效时间.如果在浏览器端生成Cookie,默认是关闭浏览器后失效 除非被清 ...

  3. 配置Google Gmail分类和过滤器

    简单的记两笔. 首先点击右上角的⚙️里面选择settings. 选择Filters and Blocked Addresses 在这个页面可以选择 create a new filter创建一个新的过 ...

  4. fiddler 学习笔记1-下载安装、开启、关闭抓包功能

    1 下载安装(安装于C盘之外的空间中) https://www.telerik.com/fiddler 2 开启抓包功能:安装后默认为开启状态 点击 file-capture 或左下角capture ...

  5. LODOOP中的各种边距 打印项、整体偏移、可打区域、内部边距

    Lodop中的打印项内容位置定位,除了打印项本身的top,left值,也会受其他设定或打印机的影响.打印开发,先用虚拟打印机测试出正确结果,然后客户端用打印维护微调常见问题:1.设置打印项相对于纸张居 ...

  6. js数组中两个有相同删除一个

    for (var i = 0; i < project.Before.length; i++) {                    var j = 0;                   ...

  7. react使用setstate注意的两点

    1.this.state里的属性不修改,或是只修改一个,那么不修改的剩下的属性不会被变动. this.state={ name:"Aliece", age:19, msg:&quo ...

  8. .net core compatibility windows & windows compatible Linux

    Who is this package for? This package is meant for developers that need to port existing .NET Framew ...

  9. 转 Debugging AutoCAD 2017 using Visual Studio 2015

    原文地址: http://adndevblog.typepad.com/autocad/2016/05/debugging-autocad-2017-using-visual-studio-2015. ...

  10. Codeforces Round #540 Div. 3 F2

    考虑将每种颜色构成的极小连通块缩点,然后直接跑树形dp即可,即f[i][0/1]表示子树内是否有颜色向上延伸时删边的方案数.dp时需要去除某点的贡献,最好用前后缀积的做法而不是求逆. 至于如何缩点,假 ...