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
 
#include<iostream>
#include<stdio.h>
using namespace std;
struct node
{
long long l_,r_,number,mark;
};
class segment_tree //这个代码是A不了的 应为用类 重复申请内存勒 把类取消了就可以了 思路最重要嘛
{
private:
node data[*];//储存 需要开四倍 怎么算的我也不知道 二叉树叶子节点 为n 总结点一定小于4n?
public:
void built(long long l,long long r,long long i)//建立线段树
{
data[i].l_=l;data[i].r_=r;data[i].mark=;data[i].number=;
if(l==r){ //如果是叶子节点
cin>>data[i].number; return ;}
else
{
int mid=(l+r)/;
built(l,mid,i*); //不是就往下建立左右孩子
built(mid+,r,i*+);
}
data[i].number=data[i*].number+data[i*+].number;
}
void down_mark(long long i)//更新缓存
{
data[i*].number+=data[i].mark*(data[i*].r_-data[i*].l_+);
data[i*+].number+=data[i].mark*(data[i*+].r_-data[i*+].l_+);
data[i*].mark+=data[i].mark; data[i*+].mark+=data[i].mark;
data[i].mark=;
}
void add(long long l,long long r,long long x,long long i)//刷新区域;
{
if(data[i].l_==l&&data[i].r_==r)
{
data[i].number+=(data[i].r_-data[i].l_+)*x;
data[i].mark+=x; return ;
}
if(data[i].mark) down_mark(i);
int mid=(data[i].l_+data[i].r_)/;
if(l>=mid+) add(l,r,x,i*+);//区间全在右孩子
else if(r<=mid) add(l,r,x,i*); //区间全在左孩子
else{ //左右各一部分
add(l,mid,x,i*);
add(mid+,r,x,i*+);
}
data[i].number=data[i*].number+data[i*+].number;
}
long long query(long long l,long long r,long long i)//查询
{
if(l==data[i].l_&&data[i].r_==r)
return data[i].number;
if(data[i].mark) down_mark(i);
int mid=(data[i].l_+data[i].r_)/;
if(l>=mid+) return query(l,r,i*+);
else if(r<=mid) return query(l,r,i*);
else{
return query(l,mid,i*)+query(mid+,r,i*+);
}
}
};
long long m,n,a,b,c;
char ch[];
int main()//这里吐槽一句 真的不想用scanf。。。 太不习惯了
{
while(scanf("%lld%lld",&m,&n)!=EOF)
{
segment_tree q;
q.built(,m,);
while(n--)
{
scanf("%s,",&ch);//cin>>ch;
if(ch[]=='Q'){
scanf("%lld%lld",&a,&b);//cin>>a>>b;
cout<<q.query(a,b,)<<endl;
}
else{
scanf("%lld%lld%lld",&a,&b,&c);//cin>>a>>b>>c;
q.add(a,b,c,);
}
}
}
return ;
}

线段树 poj 3468的更多相关文章

  1. 离散化+线段树 POJ 3277 City Horizon

    POJ 3277 City Horizon Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 18466 Accepted: 507 ...

  2. 线段树 poj 1436

    题目大意:给出n条垂直于x轴的线段的数据y1,y2,x,求出有几个三条线段一组的三元组并且他们兩兩能相见的.思路:对y轴建树,将x排序,然后按顺序边询问边擦入,用mark[i][j]表示j往左可以看到 ...

  3. [RMQ] [线段树] POJ 3368 Frequent Values

    一句话,多次查询区间的众数的次数 注意多组数据!!!! RMQ方法: 预处理 i 及其之前相同的数的个数 再倒着预处理出 i 到不是与 a[i] 相等的位置之前的一个位置, 查询时分成相同的一段和不同 ...

  4. 线段树 poj 3667

    1-n线段 m个操作 1  a 是否可找到连续a个空位子 有输出最左边(然后使这一段被占)没有0 2 a ,b a~b区间变成未使用 #include<stdio.h> #include& ...

  5. 线段树 poj 2991

    我们只要把这些向量求和,最终所指的位置就是终点,因此我们只要维护好向量的区间和就可以了.对于第二个问题,我们可以用一个数组degree[i]表示第i个向量和第i-1一个向量当前的夹角,这样就有了当前的 ...

  6. poj 3468(线段树)

    http://poj.org/problem?id=3468 题意:给n个数字,从A1 …………An m次命令,Q是查询,查询a到b的区间和,c是更新,从a到b每个值都增加x.思路:这是一个很明显的线 ...

  7. hdu 1698+poj 3468 (线段树 区间更新)

    http://acm.hdu.edu.cn/showproblem.php?pid=1698 这个题意翻译起来有点猥琐啊,还是和谐一点吧 和涂颜色差不多,区间初始都为1,然后操作都是将x到y改为z,注 ...

  8. POJ.3468 A Simple Problem with Integers(线段树 区间更新 区间查询)

    POJ.3468 A Simple Problem with Integers(线段树 区间更新 区间查询) 题意分析 注意一下懒惰标记,数据部分和更新时的数字都要是long long ,别的没什么大 ...

  9. poj 3468 A Simple Problem with Integers 线段树区间加,区间查询和

    A Simple Problem with Integers Time Limit: 1 Sec  Memory Limit: 256 MB 题目连接 http://poj.org/problem?i ...

随机推荐

  1. MSCRM 通过Ajax调用WCF服务

    Call WCF Service from Dynamics CRM using AJAX A couple of days back, I had one of my ex-colleagues c ...

  2. NSTimer定时器进阶——详细介绍,循环引用分析与解决

    引言 定时器:A timer waits until a certain time interval has elapsed and then fires, sending a specified m ...

  3. SQL Sever数据库中 T-sql语句的使用(增、删、改、查)

    SQL中的增.删.改.查 一.增:有2种方法 1.使用insert插入单行数据: 语法:insert [into] <表名> [列名] values <列值> 例:insert ...

  4. struts2(一) struts2入门

    首先推荐一本书,虽然我还没看过,但是我以后肯定会看的,<Struts+技术内幕>提取密码:kg6w .现在只是停留在会使用struts2的层次,自己也想继续深入研究,但是感觉自己的知识面还 ...

  5. 1782: [Usaco2010 Feb]slowdown 慢慢游

    1782: [Usaco2010 Feb]slowdown 慢慢游 Time Limit: 1 Sec  Memory Limit: 64 MBSubmit: 570  Solved: 346[Sub ...

  6. Solr commit 策略测试

    已知Solr 的Commit策略: 服务器端: 1)AutoCommit 2)AutoSoftCommit 客户端 Commit 本次我测试了客户端关闭Commit的情况下,服务器端Commit策略的 ...

  7. 构建微服务-使用OAuth 2.0保护API接口

    微服务操作模型 基于Spring Cloud和Netflix OSS 构建微服务-Part 1 基于Spring Cloud和Netflix OSS构建微服务,Part 2 在本文中,我们将使用OAu ...

  8. ps-色彩饱和度的设计

    1-    图层区—复制背景图层            防止原图修改失败后无法还原 2-    选项区——选择—色彩范围              以色彩为标准来对图片进行选区 3-    点击图片上 ...

  9. Linux系统启动过程详解

    启动第一步--加载BIOS当你打开计算机电源,计算机会首先加载BIOS信息,BIOS信息是如此的重要,以至于计算机必须在最开始就找到它.这是因为BIOS中包含了CPU的相关信息.设备启动顺序信息.硬盘 ...

  10. HTML学习笔记汇总

    笔记几乎涵盖了日常开发中全部的知识点以及相关注意事项 想要学习网页制作的初学者可以通过本篇笔记初步掌握HTML的使用,也可以将该笔记作为查阅资料查看 HTML简单结构 <html> < ...