1500: [NOI2005]维修数列

Time Limit: 10 Sec  Memory Limit: 64 MB
Submit: 8397  Solved: 2530

Description

Input

输入文件的第1行包含两个数N和M,N表示初始时数列中数的个数,M表示要进行的操作数目。第2行包含N个数字,描述初始时的数列。以下M行,每行一条命令,格式参见问题描述中的表格。

Output

对于输入数据中的GET-SUM和MAX-SUM操作,向输出文件依次打印结果,每个答案(数字)占一行。

Sample Input

9 8
2 -6 3 5 1 -5 -3 6 3
GET-SUM 5 4
MAX-SUM
INSERT 8 3 -5 7 2
DELETE 12 1
MAKE-SAME 3 3 2
REVERSE 3 6
GET-SUM 5 4
MAX-SUM

Sample Output

-1
10
1
10

HINT

#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
#define N 500010 int n,m,num[N];
struct SplayTree
{
int sz[N],ch[N][],pre[N],que[N],sta[N];
int top1,top2,root; int sum[N],maxm[N],maxl[N],maxr[N],val[N];
bool ro[N],same[N]; inline void SameNode(int x,int c)
{
if(x==) return;
val[x]=c;
sum[x]=sz[x]*val[x];
maxm[x]=maxl[x]=maxr[x]=max(sum[x],val[x]);
same[x]=;
}
inline void ReverseNode(int x)
{
if(x==) return;
ch[x][]^=ch[x][]^=ch[x][]^=ch[x][];
maxl[x]^=maxr[x]^=maxl[x]^= maxr[x];
ro[x]^=;
}
inline void PushDown(int x)
{
if(x==) return;
if(ro[x])
{
ReverseNode(ch[x][]);
ReverseNode(ch[x][]);
ro[x]^=;
}
if(same[x])
{
SameNode(ch[x][],val[x]);
SameNode(ch[x][],val[x]);
same[x]=;
}
}
inline void PushUp(int x)
{
if(x==) return;
sz[x]=+sz[ch[x][]]+sz[ch[x][]];
sum[x]=val[x]+sum[ch[x][]]+sum[ch[x][]];
maxl[x]=max(maxl[ch[x][]],sum[ch[x][]]+val[x]+max(,maxl[ch[x][]]));
maxr[x]=max(maxr[ch[x][]],sum[ch[x][]]+val[x]+max(,maxr[ch[x][]]));
maxm[x]=max(max(maxl[ch[x][]],)+val[x]+max(maxr[ch[x][]],),max(maxm[ch[x][]],maxm[ch[x][]]));
}
inline void Rotate(int x,int c)
{
int y=pre[x];
PushDown(y);
PushDown(x);
ch[y][!c]=ch[x][c];
if(ch[x][c]) pre[ch[x][c]]=y;
pre[x]=pre[y];
if(pre[y]) ch[pre[y]][ch[pre[y]][]==y]=x;
ch[x][c]=y;
pre[y]=x;
PushUp(y);
if(y==root) root=x;
}
inline void Splay(int x,int f)
{
PushDown(x);
while(pre[x]!=f)
{
PushDown(pre[pre[x]]);
PushDown(pre[x]);
PushDown(x);
if(pre[pre[x]]==f) Rotate(x,ch[pre[x]][]==x);
else
{
int y=pre[x],z=pre[y];
int c=(ch[z][]==y);
if(ch[y][c]==x) Rotate(x,!c),Rotate(x,c);
else Rotate(y,c),Rotate(x,c);
}
}
PushUp(x);
if(f==) root=x;
}
inline void SplayKth(int k,int f)
{
int x=root;
k+=;
while()
{
PushDown(x);
if(k==sz[ch[x][]]+) break;
else if(k<=sz[ch[x][]]) x=ch[x][];
else k-=sz[ch[x][]]+,x=ch[x][];
}
Splay(x,f);
}
inline void Erase(int x)
{
int head=,rear=;
que[head]=x;
while(head<=rear)
{
sta[++top2]=que[head];
if(ch[que[head]][]) que[++rear]=ch[que[head]][];
if(ch[que[head]][]) que[++rear]=ch[que[head]][];
head++;
}
}
inline void NewNode(int &x,int c)
{
if(top2) x=sta[top2--];
else x=++top1;
ch[x][]=ch[x][]=pre[x]=;
sz[x]=;
ro[x]=same[x]=;
val[x]=sum[x]=maxm[x]=maxl[x]=maxr[x]=c;
}
inline void Build(int &x,int l,int r,int f)
{
if(l>r) return;
int m=(l+r)>>;
NewNode(x,num[m]);
Build(ch[x][],l,m-,x);
Build(ch[x][],m+,r,x);
pre[x]=f;
PushUp(x);
}
inline void Init(int n)
{
ch[][]=ch[][]=pre[]=sz[]=;
ro[]=same[]=;
maxr[]=maxl[]=maxm[]=-;
sum[]=;
root=top1=top2=;
for(int i=;i<=n;i++) scanf("%d",&num[i]);
Build(root,,n+,);
}
void GetSum()
{
int a,b;
scanf("%d%d",&a,&b);
SplayKth(a-,);
SplayKth(a+b,root);
printf("%d\n", sum[ch[ch[root][]][]]);
}
void MaxSum()
{
SplayKth(, );
SplayKth(sz[root]-,root);
printf("%d\n",maxm[ch[ch[root][]][]]);
}
void Insert()
{
int pos,tot;
scanf("%d%d",&pos,&tot);
for(int i=;i<=tot;i++) scanf("%d", &num[i]);
SplayKth(pos,);
SplayKth(pos+,root);
Build(ch[ch[root][]][],,tot,ch[root][]);
PushUp(ch[root][]);
PushUp(root);
}
void Delete()
{
int pos,tot;
scanf("%d%d",&pos,&tot);
SplayKth(pos-,);
SplayKth(pos+tot,root);
Erase(ch[ch[root][]][]);
ch[ch[root][]][]=;
PushUp(ch[root][]);
PushUp(root);
}
void MakeSame()
{
int pos,tot,c;
scanf("%d%d%d",&pos,&tot,&c);
SplayKth(pos-,);
SplayKth(pos+tot,root);
SameNode(ch[ch[root][]][],c);
}
void Reverse()
{
int pos,tot;
scanf("%d%d",&pos,&tot);
SplayKth(pos-,);
SplayKth(pos+tot,root);
ReverseNode(ch[ch[root][]][]);
}
}t;
int main()
{
char op[];
scanf("%d%d",&n,&m);
t.Init(n);
while(m--)
{
scanf("%s",&op);
if(op[]=='G') t.GetSum();
else if(op[]=='M' && op[]=='X') t.MaxSum();
else if(op[]=='I') t.Insert();
else if(op[]=='D') t.Delete();
else if(op[]=='M' && op[]=='K') t.MakeSame();
else if(op[]=='R') t.Reverse();
}
return ;
}

[NOI2005] 维修数列的更多相关文章

  1. bzoj 1500: [NOI2005]维修数列 splay

    1500: [NOI2005]维修数列 Time Limit: 10 Sec  Memory Limit: 64 MBSubmit: 6556  Solved: 1963[Submit][Status ...

  2. [BZOJ1500][NOI2005]维修数列---解题报告

    Portal Gun:[BZOJ1500][NOI2005]维修数列 有一段时间没写博客了,最近在刚数据结构......各种板子背得简直要起飞,题目也是一大堆做不完,这里就挑一道平衡树的题来写写好了 ...

  3. BZOJ_1500_[NOI2005]维修数列_splay

    BZOJ_1500_[NOI2005]维修数列_splay 题意: 分析: 节点维护从左开始的最大连续子段和,从右开始的最大连续子段和,区间的最大连续子段和 插入:重新建一棵树,把pos旋到根,把po ...

  4. bzoj千题计划221:bzoj1500: [NOI2005]维修数列(fhq treap)

    http://www.lydsy.com/JudgeOnline/problem.php?id=1500 1.覆盖标记用INF表示无覆盖标记,要求可能用0覆盖 2.代表空节点的0号节点和首尾的两个虚拟 ...

  5. [BZOJ1500][NOI2005]维修数列 解题报告 Splay

    Portal Gun:[BZOJ1500][NOI2005]维修数列 有一段时间没写博客了,最近在刚数据结构......各种板子背得简直要起飞,题目也是一大堆做不完,这里就挑一道平衡树的题来写写好了 ...

  6. BZOJ 1500: [NOI2005]维修数列 (splay tree)

    1500: [NOI2005]维修数列 Time Limit: 10 Sec  Memory Limit: 64 MBSubmit: 4229  Solved: 1283[Submit][Status ...

  7. 【BZOJ1500】[NOI2005]维修数列 Splay

    [BZOJ1500][NOI2005]维修数列 Description Input 输入的第1 行包含两个数N 和M(M ≤20 000),N 表示初始时数列中数的个数,M表示要进行的操作数目.第2行 ...

  8. [bzoj1500][NOI2005]维修数列_非旋转Treap

    维修数列 bzoj-1500 NOI-2005 题目大意:给定n个数,m个操作,支持:在指定位置插入一段数:删除一个数:区间修改:区间翻转.查询:区间和:全局最大子序列. 注释:$1\le n_{ma ...

  9. 【BZOJ】1500: [NOI2005]维修数列

    [算法]splay [题解]数据结构 感谢Occult的模板>_<:HYSBZ 1500 维修数列 #include<cstdio> #include<cctype> ...

随机推荐

  1. putty 代理设置

    代理分 http 和 socket 代理. IE Internet属性-> 连接 -> 局域网设置 普通HTTP代理 直接输入IP,端口 socket 代理  点高级 套接字设置 安装好P ...

  2. Kakfa揭秘 Day1 Kafka原理内幕

    Spark Streaming揭秘 Day32 Kafka原理内幕 今天开始,会有几天的时间,和大家研究下Kafka.在大数据处理体系中,kafka的重要性不亚于SparkStreaming.可以认为 ...

  3. spark向量

    转自 1.本地向量MLlib的本地向量主要分为两种,DenseVector和SparseVector,顾名思义,前者是用来保存稠密向量,后者是用来保存稀疏向量,其创建方式主要有一下三种(三种方式均创建 ...

  4. 关于yum与源码安装的LAMP或LNMP网页直接显示空白页的问题?

    学习LAMP.LNMP时,遇到很奇怪的问题就是:搭建完LAMP或LNMP环境后安装PHPweb程序时,Discuz和Wordpress打不开安装向导,直接显示空白页(PHPWind9.0除外),没有任 ...

  5. DataSet数据导出为Excel文档(每个DataTable为一个Sheet)

    Web项目中,很多时候须要实现将查询的数据集导出为Excel文档的功能,很多时候不希望在工程中添加对Office组件相关的DLL的引用,甚至有时候受到Office不同版本的影响,导致在不同的服务器上部 ...

  6. IOS 数组分组 Grouped NSArray

    NSMutableSet *set=[NSMutableSet set]; [_list enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BO ...

  7. BZOJ 3160 万径人踪灭 解题报告

    这个题感觉很神呀.将 FFT 和 Manacher 有机结合在了一起. 首先我们不管那个 “不能连续” 的条件,那么我们就可以求出有多少对字母关于某一条直线对称,然后记 $T_i$ 为关于直线 $i$ ...

  8. javascript禁用与启用select标签(实用版)

    <html><head><script type="text/javascript">function disable()  {  docume ...

  9. "Principles of Reactive Programming" 之 <Persistent Actor State>学习笔记

    这是<Pinciples of Reactive Programming>week6的最后一课. 为什么需要把actor的状态持久化? 如果actor没有状态,那么在任何实时,这个acto ...

  10. firefly 环境配置所需工具

    原地址:http://www.9miao.com/question-15-59032.html http://down.9miao.com/attachment/forum/201405/19/120 ...