A Simple Problem with Integers
Time Limit: 5000MS   Memory Limit: 131072K
Total Submissions: 73163   Accepted: 22585
Case Time Limit: 2000MS

Description

You have N integers, A1A2, ... , AN. You need to deal with two kinds of operations. One type of operation is to add some given number to each number in a given interval. The other is to ask for the sum of numbers in a given interval.

Input

The first line contains two numbers N and Q. 1 ≤ N,Q ≤ 100000.
The second line contains N numbers, the initial values of A1A2, ... , AN. -1000000000 ≤ Ai ≤ 1000000000.
Each of the next Q lines represents an operation.
"C a b c" means adding c to each of AaAa+1, ... , Ab. -10000 ≤ c ≤ 10000.
"Q a b" means querying the sum of AaAa+1, ... , Ab.

Output

You need to answer all Q commands in order. One answer in a line.

Sample Input

10 5
1 2 3 4 5 6 7 8 9 10
Q 4 4
Q 1 10
Q 2 4
C 3 6 3
Q 2 4

Sample Output

4
55
9
15

Hint

The sums may exceed the range of 32-bit integers.

Source

 
  最裸的线段树lazy标记
 
 #include <iostream>
#include <cstdio>
using namespace std;
const int N = ;
typedef long long LL;
LL sum[N<<]; //sum用来存储每个节点的子节点数值的总和
LL add[N<<];//add用来记录该节点的每个数值应该加多少
struct Node{
int l,r;//表示改点的左右区间
int mid(){//结构体函数
return (l+r)>>;
}
} tree[N<<]; void PushUp(int rt){//算某一节点的左右孩子值的和
sum[rt] = sum[rt<<] + sum[rt<<|];
} void PushDown(int rt,int m){//rt当前节点 m此节点的区间长度
if(add[rt]!=){//如果当前节点lazy标记不为 0
add[rt<<] += add[rt];//左右孩子lazy累加
add[rt<<|] += add[rt];
sum[rt<<] += add[rt]*(m-(m>>));//更新计算左右孩子
sum[rt<<|] += add[rt] * (m>>);
add[rt] = ;//小细节,但很重要,不能忘记lazy用过后清零
}
} void build(int l,int r,int rt){
tree[rt].l = l;
tree[rt].r = r;
add[rt] = ;//lazy标记记为0
if(l == r){
scanf("%lld",&sum[rt]);//把子节点信息记录在sum里
return ;
}
int m = tree[rt].mid();
build(l,m,rt<<);//建立左右孩子,这时编号是按照类似“宽搜”来编的
build(m+,r,rt<<|); PushUp(rt);//算出此节点的权值
} void update(int c,int l,int r,int rt){//当前节点rt,在l和r区间上加上c
if(l<=tree[rt].l&&tree[rt].r<=r){//当前节点所表示的区间完全被所要更新的区间包含
add[rt]+=c;//lazy累加,add[i]数组是针对i左右孩子的
sum[rt]+=(LL)c*(tree[rt].r-tree[rt].l+);//这句话很重要和下面的PushUP()类似
return;
}
PushDown(rt,tree[rt].r - tree[rt].l + );//用rt的lazy更新其子节点
int m = tree[rt].mid();
if(l<=m) update(c,l,r,rt<<);
if(m+<=r) update(c,l,r,rt<<|);
PushUp(rt);
} LL query(int l,int r,int rt){//当前节点为rt,求l,到r的和
if(l<=tree[rt].l&&tree[rt].r<=r){//区间完全包含,可以直接返回
return sum[rt];
}
//因为此时用到rt节点,所以才更新lazy
PushDown(rt,tree[rt].r-tree[rt].l + ); int m = tree[rt].mid();
LL res = ; if(l<= m)//要求的区间有一部分在mid的左边
res += query(l,r,rt<<);
if(m+<=r)
res += query(l,r,rt<<|);
return res;
} int main(){ int n,m; scanf("%d %d",&n,&m);
build(,n,); while(m--){
char ch[];
scanf("%s",ch);
int a,b,c;
if(ch[] == 'Q'){
scanf("%d %d", &a,&b);
printf("%lld\n",query(a,b,));
}
else{
scanf("%d %d %d",&a,&b,&c);
cin>>a>>b>>c;
update(c,a,b,);
}
} return ;
}

还有一种较好理解的方法:

 #include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cmath>
#include<algorithm>
#include<cstring>
using namespace std;
typedef long long LL;
inline LL read(){
LL x=,f=;char ch=getchar();
while(ch<''||ch>''){if(ch=='-')f=-;ch=getchar();}
while(ch>=''&&ch<=''){x=x*+ch-'';ch=getchar();}
return x*f;
}
const LL maxn=;
struct node{
LL num;
LL l,r;
LL lc,rc;
LL sum,lazy;
}seg[maxn*];
LL a[maxn];
LL N,M,tot=;
inline void updata_son(LL root){
LL d=seg[root].lazy;
if(d!=){
LL lson=seg[root].lc; LL rson=seg[root].rc;
seg[lson].lazy+=d; seg[rson].lazy+=d; seg[root].lazy=;
seg[lson].sum+=d*(seg[lson].r-seg[lson].l+);
seg[rson].sum+=d*(seg[rson].r-seg[rson].l+); }
}
inline void Build(LL root,LL l,LL r){
seg[root].num=root;
seg[root].l=l; seg[root].r=r;
if(l==r){
seg[root].sum=a[l];
return ;
}
LL mid=(l+r)>>;
seg[root].lc=++tot; Build(tot,l,mid);
seg[root].rc=++tot; Build(tot,mid+,r);
seg[root].sum=seg[seg[root].lc].sum+seg[seg[root].rc].sum;
}
inline LL query(LL root,LL l,LL r){
if(l<=seg[root].l&&seg[root].r<=r){
return seg[root].sum;
}
updata_son(root);
LL ans=;
LL mid=(seg[root].l+seg[root].r)>>;
if(l<=mid) ans+=query(seg[root].lc,l,r);
if(mid+<=r) ans+=query(seg[root].rc,l,r);
return ans;
} inline void change(LL root,LL l,LL r,LL delta){
if(l<=seg[root].l&&seg[root].r<=r){
seg[root].sum+=(seg[root].r-seg[root].l+)*delta;
seg[root].lazy+=delta;
return ;
}
updata_son(root);
LL mid=(seg[root].l+seg[root].r)>>;
if(l<=mid) change(seg[root].lc,l,r,delta);
if(mid+<=r) change(seg[root].rc,l,r,delta);
seg[root].sum=seg[seg[root].lc].sum+seg[seg[root].rc].sum;
}
int main(){
N=read(); M=read();
for(LL i=;i<=N;i++) a[i]=read();
Build(,,N);
LL ll,rr,de;
char x[];
for(LL i=;i<=M;i++){
scanf("%s",x);
if(x[]=='C'){
ll=read(); rr=read(); de=read();
change(,ll,rr,de);
continue;
}
if(x[]=='Q'){
ll=read(); rr=read();
printf("%lld\n",query(,ll,rr));
}
}
return ;
}

线段树的lazy(poj3468)的更多相关文章

  1. POJ 3237 Tree (树链剖分 路径剖分 线段树的lazy标记)

    题目链接:http://poj.org/problem?id=3237 一棵有边权的树,有3种操作. 树链剖分+线段树lazy标记.lazy为0表示没更新区间或者区间更新了2的倍数次,1表示为更新,每 ...

  2. 线段树入门&lazy思想

    线段树将区间分成若干个子区间,子区间又继续分,直到区间为一个点(区间左值等于右值) 对于父区间[a,b],其子区间为[a,(a+b)/2]和[(a+b)/2+1,b] 用于求区间的值,如区间最值.区间 ...

  3. 浅谈算法——线段树之Lazy标记

    一.前言 前面我们已经知道线段树能够进行单点修改和区间查询操作(基本线段树).那么如果需要修改的是一个区间该怎么办呢?如果是暴力修改到叶子节点,复杂度即为\(O(nlog n)\),显然是十分不优秀的 ...

  4. Mayor's posters (离散化线段树+对lazy的理解)

    题目 题意: n(n<=10000) 个人依次贴海报,给出每张海报所贴的范围 li,ri(1<=li<=ri<=10000000) .求出最后还能看见多少张海报. 思路: 由于 ...

  5. 线段树初步&&lazy标记

    线段树 一.概述: 线段树是一种二叉搜索树,与区间树相似,它将一个区间划分成一些单元区间,每个单元区间对应线段树中的一个叶结点. 对于线段树中的每一个非叶子节点[a,b],它的左儿子表示的区间为[a, ...

  6. Codeforces 834D The Bakery【dp+线段树维护+lazy】

    D. The Bakery time limit per test:2.5 seconds memory limit per test:256 megabytes input:standard inp ...

  7. 线段树(lazy)-hdu1689

    题目链接:https://vjudge.net/problem/HDU-1698 题目描述: 现在Pudge想做一些操作.让我们将钩子的连续金属棒从1编号到N.对于每个操作,Pudge可以将连续金属棒 ...

  8. 线段树(lazy标记)-- 模板

    ], lazy[MAXN << ]; void PushUp(int rt) { ans[rt] = ans[rt << ] + ans[rt << | ]; } ...

  9. HihoCoder1080 更为复杂的买卖房屋姿势(线段树+多重lazy)

    描述 小Hi和小Ho都是游戏迷,“模拟都市”是他们非常喜欢的一个游戏,在这个游戏里面他们可以化身上帝模式,买卖房产. 在这个游戏里,会不断的发生如下两种事件:一种是房屋自发的涨价或者降价,而另一种是政 ...

随机推荐

  1. webpack中引入的path[require('path')]是node.js内置的package,用来处理路径的。

    http://www.runoob.com/nodejs/nodejs-path-module.html

  2. HDU 5321 Beautiful Set

    题目链接 我们能够枚举子集的大小k.求出全部大小为k的子集对答案的贡献.问题就攻克了. 注意到欧拉函数的性质:n=∑φ(d),d|n 莫比乌斯函数性质:∑d|nμ(d)=0n>1 感谢http: ...

  3. ORA-00257错误的解决办法

    author: headsen  chen date: 2018-04-17  11:12:39 notice:个人原创,转载请注明作者和出处,否则依法追击法律责任. 1,oracle数据库正常使用中 ...

  4. jquery的jsonp相关

    <!DOCTYPE html><html><head ><meta charset="utf-8"><script src=& ...

  5. ORA-12505, TNS:listener does not currently know of SID given in connect desc

    数据库名(数据库服务名)配置错误.

  6. Powershell ——findstr

    从文件中找出关键字 $colItems = Get-ChildItem d:\test #定义文件夹的路径 foreach ($i in $colItems) #循环获取文件夹下的txt文件 { $f ...

  7. 第17章—前端分页(Bootstrap-Table)

    spring boot 系列学习记录:http://www.cnblogs.com/jinxiaohang/p/8111057.html 码云源码地址:https://gitee.com/jinxia ...

  8. winrar命令行参数说明

    用法:     rar <命令> -<开关 1> -<开关 N> <压缩文件> <文件...> <@列表文件...> <解 ...

  9. Linux network 资料链接

    1.iptables 基础 https://wiki.centos.org/HowTos/Network/IPTables 2.HOWTOs on netfilter site http://www. ...

  10. 流畅的python 14章可迭代的对象、迭代器 和生成器

    可迭代的对象.迭代器和生成器 迭代是数据处理的基石.扫描内存中放不下的数据集时,我们要找到一种惰性获取数据项的方式,即按需一次获取一个数据项.这就是迭代器模式(Iterator pattern). 迭 ...