3212: Pku3468 A Simple Problem with Integers

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 2046  Solved: 892
[Submit][Status][Discuss]

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. 

水题 区间加法 区间求和
mmp我又忘了update后pushup

  1. #include<cstdio>
  2. #include<iostream>
  3. #include<algorithm>
  4. #include<cstring>
  5. #define ls u<<1
  6. #define rs ls|1
  7. #define ll long long
  8. #define N 100050
  9. using namespace std;
  10. int a[N],n,m;ll sum[N<<2],lz[N<<2];
  11. void pushup(int u){sum[u]=sum[ls]+sum[rs];}
  12. void build(int u,int l,int r){
  13. if(l==r){
  14. sum[u]=a[l];
  15. return;
  16. }
  17. int mid=l+r>>1;
  18. build(ls,l,mid);
  19. build(rs,mid+1,r);
  20. pushup(u);
  21. }
  22. void pushdown(int u,int L,int R){
  23. if(!lz[u])return;
  24. int mid=L+R>>1;
  25. lz[ls]+=lz[u];lz[rs]+=lz[u];
  26. sum[ls]+=lz[u]*(mid-L+1);
  27. sum[rs]+=lz[u]*(R-mid);
  28. lz[u]=0;
  29. }
  30. ll query(int u,int L,int R,int l,int r){
  31. if(l<=L&&R<=r)return sum[u];
  32. pushdown(u,L,R);
  33. int mid=L+R>>1;ll t=0;
  34. if(l<=mid)t+=query(ls,L,mid,l,r);
  35. if(r>mid)t+=query(rs,mid+1,R,l,r);
  36. return t;
  37. }
  38. void update(int u,int L,int R,int l,int r,int val){
  39. if(l<=L&&R<=r){
  40. sum[u]+=val*(R-L+1);
  41. lz[u]+=val;return;
  42. }
  43. pushdown(u,L,R);int mid=L+R>>1;
  44. if(l<=mid)update(ls,L,mid,l,r,val);
  45. if(r>mid)update(rs,mid+1,R,l,r,val);
  46. pushup(u);
  47. }
  48. int main(){
  49. //freopen(".in","r",stdin);
  50. //freopen(".out","w",stdout);
  51. scanf("%d%d",&n,&m);
  52. for(int i=1;i<=n;i++)
  53. scanf("%d",&a[i]);
  54. build(1,1,n);
  55. char s[10];int l,r,v;
  56. while(m--){
  57. scanf("%s%d%d",s,&l,&r);
  58. if(s[0]=='Q'){
  59. printf("%lld",query(1,1,n,l,r));
  60. if(m)putchar('\n');
  61. }
  62. else scanf("%d",&v),update(1,1,n,l,r,v);
  63. }
  64. return 0;
  65. }

bzoj3212 Pku3468 A Simple Problem with Integers 线段树的更多相关文章

  1. bzoj 3212 Pku3468 A Simple Problem with Integers 线段树基本操作

    Pku3468 A Simple Problem with Integers Time Limit: 1 Sec  Memory Limit: 128 MBSubmit: 2173  Solved:  ...

  2. 2018 ACMICPC上海大都会赛重现赛 H - A Simple Problem with Integers (线段树,循环节)

    2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 H - A Simple Problem with Integers (线段树,循环节) 链接:https://ac.nowcoder.co ...

  3. BZOJ3212: Pku3468 A Simple Problem with Integers(线段树)

    3212: Pku3468 A Simple Problem with Integers Time Limit: 1 Sec  Memory Limit: 128 MBSubmit: 2530  So ...

  4. BZOJ-3212 Pku3468 A Simple Problem with Integers 裸线段树区间维护查询

    3212: Pku3468 A Simple Problem with Integers Time Limit: 1 Sec Memory Limit: 128 MB Submit: 1278 Sol ...

  5. POJ 3468 A Simple Problem with Integers(线段树 成段增减+区间求和)

    A Simple Problem with Integers [题目链接]A Simple Problem with Integers [题目类型]线段树 成段增减+区间求和 &题解: 线段树 ...

  6. poj3468 A Simple Problem with Integers (线段树区间最大值)

    A Simple Problem with Integers Time Limit: 5000MS   Memory Limit: 131072K Total Submissions: 92127   ...

  7. POJ3648 A Simple Problem with Integers(线段树之成段更新。入门题)

    A Simple Problem with Integers Time Limit: 5000MS Memory Limit: 131072K Total Submissions: 53169 Acc ...

  8. poj 3468 A Simple Problem with Integers 线段树第一次 + 讲解

    A Simple Problem with Integers Description You have N integers, A1, A2, ... , AN. You need to deal w ...

  9. Poj 3468-A Simple Problem with Integers 线段树,树状数组

    题目:http://poj.org/problem?id=3468   A Simple Problem with Integers Time Limit: 5000MS   Memory Limit ...

随机推荐

  1. 【iOS】Swift GCD-下

    欢迎来到本GCD教程的第二同时也是最终部分! 在第一部分中,你学到了并发,线程以及GCD的工作原理.通过使用dispatch_barrrier和dispatch_sync,你做到了让PhotoMana ...

  2. 【基础知识】Flex-弹性布局原来如此简单!!

    简言 布局的传统解决方案是基于盒状模型,依赖 display + position + float 方式来实现,灵活性较差.2009年,W3C提出了一种新的方案-Flex,Flex是Flexible ...

  3. 如何书写高效的css样式

    如何书写高效的css样式? 有以下四个关键要素: 1.高效的css 2.可维护的css 3.组件化的css 4.hack-free  css 书写高效的css: 1.使用外联样式替代行间样式或内嵌样式 ...

  4. JS页面跳转的常用方法整理.

    <script type="text/javascript"> //js页面跳转 function showtabs() { window.location.href ...

  5. JAVA_SE基础——47.接口

    如果一个抽象类中的所有方法都是抽象的,则可以将这个类用另一种方法来定义,即接口~ 在定义接口时,需要用interface关键字来声明,具体实例如code1 接口的定义格式:interface 接口名{ ...

  6. Python内置函数(27)——range

    英文文档: range(stop) range(start, stop[, step]) Rather than being a function, range is actually an immu ...

  7. 创建以mybatis为基础的web项目(1)

    1. 新建项目,生成web.xml(生成的目录结构如下所示) 目录结构如下图 2. 导入mybatis包,数据库驱动包,log4j包(复制到webroot目录下的lib文件夹下面,并添加到构建路径) ...

  8. 返回到前台的String出现乱码问题

    使用springmvc给前天返回String类型的数据出现乱码问题可以在配置环境Spring-mvc.xml中添加如下代码 <mvc:annotation-driven> <mvc: ...

  9. GIT入门笔记(5)- 创建版本库

    版本库又名仓库,英文名repository,可以简单理解成一个目录, 这个目录里面的所有文件都可以被Git管理起来,每个文件的修改.删除,Git都能跟踪,以便任何时刻都可以追踪历史,或者在将来某个时刻 ...

  10. groovy入门(2-1)Groovy的Maven插件安装:Plugin execution not covered by lifecycle configuration

    参考链接:http://www.cnblogs.com/rightmin/p/4945797.html 1.引入groovy的jar包 2.引入groovy编译插件 3.遇到问题 Plugin exe ...