博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[ACM] poj 3468 A Simple Problem with Integers(线段树,成段更新,懒惰标记)
阅读量:6336 次
发布时间:2019-06-22

本文共 2704 字,大约阅读时间需要 9 分钟。

A Simple Problem with Integers
Time Limit: 5000MS   Memory Limit: 131072K
Total Submissions: 55273   Accepted: 16628
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 51 2 3 4 5 6 7 8 9 10Q 4 4Q 1 10Q 2 4C 3 6 3Q 2 4

Sample Output

455915

Hint

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

Source

, Yang Yi

 

解题思路:

某个区间内的数都加上同一个数,成段更新。

代码:

#include 
#include
#include
using namespace std;#define lson l,m,rt<<1#define rson m+1,r,rt<<1|1const int maxn=100005;long long sum[maxn<<2];long long add[maxn<<2];int n,k;void PushUp(int rt){ sum[rt]=sum[rt<<1]+sum[rt<<1|1];}void PushDown(int rt,int m){ if(add[rt]) { //add[rt<<1]=add[rt<<1|1]=add[rt];//不能写成这样 add[rt<<1]+=add[rt]; add[rt<<1|1]+=add[rt]; sum[rt<<1]+=add[rt]*(m - (m>>1)); sum[rt<<1|1]+=add[rt]*(m>>1); add[rt]=0; }}void build(int l,int r,int rt){ add[rt]=0; if(l==r) { scanf("%lld",&sum[rt]); return; } int m=(l+r)>>1; build(lson); build(rson); PushUp(rt);}void update(int L,int R,int c,int l,int r,int rt){ if(L<=l&&r<=R) { add[rt]+=c; sum[rt]+=(long long)c*(r-l+1); return; } PushDown(rt,r-l+1); int m=(r+l)>>1; if(L<=m) update(L,R,c,lson); if(R>m) update(L,R,c,rson); PushUp(rt);}long long query(int L,int R,int l,int r,int rt)//注意long long类型{ if(L<=l&&r<=R) { return sum[rt]; } PushDown(rt,r-l+1);//查询的时候要向下更新,懒惰标记 int m=(l+r)>>1; long long ans=0;//注意long long if(L<=m) ans+=query(L,R,lson); if(R>m) ans+=query(L,R,rson); return ans;}int main(){ scanf("%d%d",&n,&k); build(1,n,1); char c;int a,b,d; while(k--) { scanf("%s",&c); if(c=='Q') { scanf("%d%d",&a,&b); printf("%lld\n",query(a,b,1,n,1)); } else { scanf("%d%d%d",&a,&b,&d); update(a,b,d,1,n,1); } } return 0;}

 

转载于:https://www.cnblogs.com/sr1993/p/3697899.html

你可能感兴趣的文章
【算法】论平衡二叉树(AVL)的正确种植方法
查看>>
基于DDD的现代ASP.NET开发框架--ABP系列之1、ABP总体介绍
查看>>
react 从零开始搭建开发环境
查看>>
scala recursive value x$5 needs type
查看>>
ps -ef |grep 输出的具体含义
查看>>
markdown编辑
查看>>
ASCII 在线转换器
查看>>
Linux内核同步:RCU
查看>>
Android逆向进阶——让你自由自在脱壳的热身运动(dex篇)
查看>>
Java设计模式之五大创建型模式(附实例和详解)
查看>>
60 Permutation Sequence
查看>>
主流的RPC框架有哪些
查看>>
Hive学习之路 (七)Hive的DDL操作
查看>>
[转]mysql使用关键字作为列名的处理方式
查看>>
awesome go library 库,推荐使用的golang库
查看>>
树形展示形式的论坛
查看>>
jdbcTemplate 调用存储过程。 入参 array 返回 cursor
查看>>
C++中的stack类、QT中的QStack类
查看>>
Linux常用基本命令[cp]
查看>>
CSS 相对|绝对(relative/absolute)定位系列(一)
查看>>