CH4301 Can you answer on these queries III

####

Can you answer on these queries III

  • 题目
    CH4301
  • 题意
    • 1 操作 查询区间 [ x , y ] [x,y] [x,y]最大连续子段和
    • 0 操作 单点修改
  • 分析
    0 0 0操作单点修改板子
    1 1 1操作区间操作,首先分析区间可加性,最大连续子段和满足区间可加性。与普通求区间和不同,要对区间和进行判断,找到最大的和。直接维护区间最大连续子段和是不行的,数据中出现负数,在两个区间合并时,不只是简单的 t r e e [ r t ] . d a t = m a x ( t r e e [ r t &lt; &lt; 1 ] . d a t , t r e e [ r t &lt; &lt; 1 ∣ 1 ] . d a t ) tree[rt].dat = max(tree[rt&lt;&lt;1].dat,tree[rt&lt;&lt;1|1].dat) tree[rt].dat=max(tree[rt<<1].dat,tree[rt<<11].dat),而是两个区间交界的部分形成的子段可能的和会最大,那么引入两个还需要维护的值,紧靠左端的最大连续和,紧靠右段的最大连续和。现在的答案就是 t r e e [ r t ] . d a t = m a x ( m a x ( t r e e [ r t &lt; &lt; 1 ] . d a t , t r e e [ r t &lt; &lt; 1 ∣ 1 ] . d a t ) , t r e e [ r t &lt; &lt; 1 ] . r m a x + t r e e [ r t &lt; &lt; 1 ∣ 1 ] . l m a x ) tree[rt].dat = max(max(tree[rt&lt;&lt;1].dat,tree[rt&lt;&lt;1|1].dat),tree[rt&lt;&lt;1].rmax+tree[rt&lt;&lt;1|1].lmax) tree[rt].dat=max(max(tree[rt<<1].dat,tree[rt<<11].dat),tree[rt<<1].rmax+tree[rt<<11].lmax).想要维护这两个值,同样还是由这个点的左右两个子节点的 l m a x lmax lmax贡献答案,但是右子节点的 l m a x lmax lmax要加上左子节点的 s u m sum sum(即区间和),因为区间是连续的。所以还要在维护一个 s u m sum sum区间和.
    在执行 a s k ask ask操作时要注意:需要先更新左右子节点区间记为 a , b a,b a,b,答案记为 a n s ans ans,那么先更新左子节点区间和 a n s . s u m = a s k ( r t &lt; &lt; 1 , L , R ) ans.sum = ask(rt&lt;&lt;1,L,R) ans.sum=ask(rt<<1,L,R),右子节点同理。再累计左右子节点的 l m a x , r m a x lmax,rmax lmax,rmax,以 l a m x lamx lamx为例,当 L &gt; m i d L &gt; mid L>mid 时,只递归右子节点,答案更新为 a n s . l m a x = b . l m a x ans.lmax = b.lmax ans.lmax=b.lmax,当 L ≤ m i d L {\leq} mid Lmid 左右都会递归,答案更新为 a n s . l m a x = m a x ( a . l m a x , a . s u m + b . l m a x ) ans.lmax = max(a.lmax,a.sum+b.lmax) ans.lmax=max(a.lmax,a.sum+b.lmax).最后 a n s . d a t = m a x ( m a x ( a . d a t , b . d a t ) , a . r m a x + b . l m a x ) ans.dat = max(max(a.dat,b.dat),a.rmax+b.lmax) ans.dat=max(max(a.dat,b.dat),a.rmax+b.lmax),就是最终答案。
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 5e5+5;
const int INF = 0x3fffffff;
int a[N];
struct segment_tree
{
  	int l;
  	int r;
    int dat;//区间最大连续子段和
    int lmax;//紧靠左端的最大连续和
    int rmax;//紧靠右段的最大连续和
    int sum;//区间和
}tree[N<<2];
void pushup(int rt)
{
   tree[rt].sum = tree[rt<<1].sum + tree[rt<<1|1].sum;
   tree[rt].lmax = max(tree[rt<<1].lmax,tree[rt<<1].sum+tree[rt<<1|1].lmax);
   tree[rt].rmax = max(tree[rt<<1|1].rmax,tree[rt<<1|1].sum+tree[rt<<1].rmax);
   tree[rt].dat = max(max(tree[rt<<1].dat,tree[rt<<1|1].dat),tree[rt<<1].rmax+tree[rt<<1|1].lmax);
}
void build(int rt,int l,int r)
{
	tree[rt].l = l;
	tree[rt].r = r;
	if(l == r)
	{
		tree[rt].dat = tree[rt].rmax = tree[rt].lmax = tree[rt].sum = a[l];
		return ;
	}
	int mid = (l+r)>>1;
	build(rt<<1,l,mid);
	build(rt<<1|1,mid+1,r);
	pushup(rt);
}
void update(int rt,int x,int val)
{
	int l = tree[rt].l;
	int r = tree[rt].r;
	if(l == r) {tree[rt].dat = tree[rt].sum = tree[rt].lmax = tree[rt].rmax = val;return;}
	int mid = (l+r)>>1;
	if(x <= mid) update(rt<<1,x,val);
	else update(rt<<1|1,x,val);
	pushup(rt);
}
segment_tree ask(int rt,int L,int R)
{
	int l = tree[rt].l;
	int r = tree[rt].r;
	if(L <= l && r <= R) return tree[rt];
	segment_tree a,b,ans;
	a.sum = a.dat = a.lmax = a.rmax = b.sum = b.dat = b.lmax = b.rmax = -INF;
    ans.sum = 0;
	int mid = (l+r)>>1;
	if(L <= mid)
	{
		a = ask(rt<<1,L,R);
		ans.sum += a.sum;
	}
	if(R > mid)
	{
		b = ask(rt<<1|1,L,R);
		ans.sum += b.sum;
	}
	if(L > mid)
		ans.lmax = b.lmax;
	else ans.lmax = max(a.lmax,a.sum+b.lmax);
	if(R <= mid)
		ans.rmax = a.rmax;
	else ans.rmax = max(b.rmax,b.sum+a.rmax);
	ans.dat = max(max(a.dat,b.dat),a.rmax+b.lmax);
	return ans;
}
int main ()
{
    int n,m;
    cin>>n>>m;
    for(int i = 1;i <= n;i++) cin>>a[i];
    build(1,1,n);
    while(m--)
    {
    	int op,x,y;
    	cin>>op>>x>>y;
    	if(op == 1)
    	{
    	   if(x > y) swap(x,y);
           cout<<ask(1,x,y).dat<<endl;
    	}
    	else
    	{
          update(1,x,y);
    	}
    }
	return 0 ;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值