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

Description

You have N integers, A1, A2, ... , 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 A1, A2, ... , AN. -1000000000 ≤ Ai ≤ 1000000000.
Each of the next Q lines represents an operation.
"C a b c" means adding c to each of Aa, Aa+1, ... , Ab. -10000 ≤ c ≤ 10000.
"Q a b" means querying the sum of Aa, Aa+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.
题目大意:
给你n个数,然后会进行q次操作,Q a b为查询区间[a,b]所有数的和sum,
C a b c ,为将区间[a,b]所有数整体加c。
思路分析:如果只是改变某一个数的值,我们直接用一个裸的线段树来维护就行,但是这个题是
区间的值整体发生变化,如果再进行和以前一样的操作,则update的复杂度变成了LlogL(L为
区间长度)很不高效,势必超时,因此我们可以采用lazy标记的方法,用空间换时间,开一个lazy
数组,每次不必访问到根节点,只需要到更新的区间所在的节点就可以,大大提高了程序效率,只需要
明确lazy标记什么时候往儿子传就可以,一个是要往子节点更新,另一个是即将要查询子节点,都要将
lazy标记向下传一层,传给自己的儿子,增值会爆int,需要用long long
代码:
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
const int maxn=+;
typedef long long ll;
ll tree[*maxn];
ll lazy[*maxn];
ll num[maxn];
void build (int p,int l,int r)
{
if(l==r) {tree[p]=num[l];return;}
int mid=(l+r)>>;
build(p<<,l,mid);
build((p<<)|,mid+,r);
tree[p]=tree[p<<]+tree[(p<<)|];
}
void pushdown(int p,int m)//把lazy标记下放到儿子节点
{
if(lazy[p])
{
lazy[p<<]+=lazy[p];
lazy[(p<<)|]+=lazy[p];
tree[p<<]+=(m-(m>>))*lazy[p];
tree[(p<<)|]+=(m>>)*lazy[p];
lazy[p]=;
}
}
void update(int p,int l,int r,int x,int y,int v)
{
if(x<=l&&y>=r)
{
lazy[p]+=v;
tree[p]+=(ll)v*(r-l+);//区间长度
return;
}
pushdown(p,r-l+);
int mid=(l+r)>>;
if(y<=mid) update(p<<,l,mid,x,y,v);
else if(x>mid) update((p<<)|,mid+,r,x,y,v);
else {update(p<<,l,mid,x,mid,v),update((p<<)|,mid+,r,mid+,y,v);}
tree[p]=tree[p<<]+tree[(p<<)|];
}
ll find(int p,int l,int r,int x,int y)
{
if(x<=l&&y>=r){return tree[p];}
pushdown(p,r-l+);
int mid=(l+r)>>;
ll ans=;
if(y<=mid) ans=find(p<<,l,mid,x,y);
else if(x>mid) ans=find((p<<)|,mid+,r,x,y);
else ans=find(p<<,l,mid,x,mid)+find((p<<)|,mid+,r,mid+,y);
return ans;
}
int main()
{
int n,q;
char s[];
int a,b,c;
while(~scanf("%d%d",&n,&q))
{
memset(tree,,sizeof(tree));
memset(lazy,,sizeof(lazy));
for(int i=;i<=n;i++)
scanf("%lld",&num[i]);
build(,,n);
while(q--)
{
scanf("%s",s);
if(s[]=='Q')
{
scanf("%d%d",&a,&b);
printf("%lld\n",find(,,n,a,b));
}
else
{
scanf("%d%d%d",&a,&b,&c);
update(,,n,a,b,c);
}
}
}
}

poj3468 线段树+lazy标记的更多相关文章

  1. POJ3237 Tree(树剖+线段树+lazy标记)

    You are given a tree with N nodes. The tree’s nodes are numbered 1 through N and its edges are numbe ...

  2. 线段树+lazy标记 2019年8月10日计蒜客联盟周赛 C.小A的题

    题目链接:https://nanti.jisuanke.com/t/40852 题意:给定一个01串s,进行m次操作,|s|<=1e6,m<=5e5 操作有两种 l r 0,区间[l,r] ...

  3. HDU_1698 Just a Hook(线段树+lazy标记)

    pid=1698">题目请点我 题解: 接触到的第一到区间更新,须要用到lazy标记.典型的区间着色问题. lazy标记详情请參考博客:http://ju.outofmemory.cn ...

  4. POJ 3225 线段树+lazy标记

    lazy写崩了--. 查了好久 /* U-> [l,r]–>1 I-> [1,l-1] [r+1,+无穷] –>0 D-> [l,r]–>0 C-> [1,l ...

  5. 线段树+Lazy标记(我的模版)

    #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef unsigned long long ...

  6. C++-POJ2777-Count Color[线段树][lazy标记][区间修改]

     分析:https://www.bilibili.com/read/cv4777102 #include <cstdio> #include <algorithm> using ...

  7. 线段树lazy标记??Hdu4902

    Nice boat Time Limit: 30000/15000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others) To ...

  8. hdu-3397 Sequence operation 线段树多种标记

    题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=3397 题目大意: 0 a b表示a-b区间置为0 1 a b表示a-b区间置为1 2 a b表示a- ...

  9. HDU 3468:A Simple Problem with Integers(线段树+延迟标记)

    A Simple Problem with Integers Case Time Limit: 2000MS Description You have N integers, A1, A2, ... ...

随机推荐

  1. Mysql主从复制的配置(双机互为主从)

    目的: 让两台mysql服务器可以互为主从提供同步服务. 优点: 1. mysql的主从复制的主要优点是同步"备份", 在从机上的数据库就相当于一个(基本实时)备份库. 2. 在主 ...

  2. 大整数算法[10] Comba乘法(实现)

    ★ 引子 上一篇文章讲了 Comba 乘法的原理,这次来讲讲如何实现.为了方便移植和充分发挥不同平台下的性能,暂时用了三种不同的实现方式: 1.单双精度变量都有的情况. 2.只有单精度变量的情况. 3 ...

  3. RAILS ON

    我是按照下面这个URL来轻快安装的. http://lxiaodao.iteye.com/blog/1579992 (1)RVM官方网站应该是改版过一次, 使用 curl -L https://get ...

  4. 18个SaaS及其功能评价

    SAAS软件及其功能评价1. 360 两个同步功能都不错,却被埋没了2. 够快云3. DBFen4. Seafile5. 坚果云6. DZ7. 百度云8. 1159. 迷你云10. 微云11. Dro ...

  5. Check if a string is NULL or EMPTY using PowerShell

    http://techibee.com/powershell/check-if-a-string-is-null-or-empty-using-powershell/1889 Check if a s ...

  6. C++定义错误码类

    我们平时有这样的需求,可能是C用户的老习惯了,在底层的组件中更喜欢用返回错误码的形式来告知用户函数的调用状态,一般来说,简单用#define 一个宏来包装下返回值. #define ERR_SYSTE ...

  7. BZOJ3297: [USACO2011 Open]forgot

    3297: [USACO2011 Open]forgot Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 54  Solved: 38[Submit][ ...

  8. App项目升级Xcode7&iOS9(续) - This bundle is invalid. The bundle identifier contains disallowed characters

    金田 iOS 9发布已经有2月有余,现在Xcode已经有升级到Xcode7.1,开发环境安装等一系列相关的流程,以及Xcode 7 & iOS 9升级相关的一些部分,在这里就不再多加赘述(详见 ...

  9. Codeforces Round #299 (Div. 1)C. Tavas and Pashmaks (凸壳)

    C. Tavas and Pashmaks   Tavas is a cheerleader in the new sports competition named "Pashmaks&qu ...

  10. cocos2d-x游戏开发(十七)NDK+ant编译暗黑世界

    个人原创,欢迎转载http://blog.csdn.net/dawn_moon/article/details/12308967 9秒论坛的客户端暗黑世界,ios已经跑过了,今天搞了一下安卓的,记录一 ...