POJ-3468A Simple Problem with Integers,线段数区间更新查询,代码打了无数次还是会出错~~
Time Limit: 5000MS | Memory Limit: 131072K | |
![]() ![]() ![]() ![]() |
![]() ![]() ![]() ![]() |
|
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
Source
这个题无非就是更新某个区间然后查询,思路甚至比其它的线段树要简单,但写起来却每次都出错;
思路很简单,如果每次更新都遍历到叶节点,毫无疑问会超时,既然是区间更新,我们可以先将要增加的值存在包含本区间的父亲区间里,下次往子节点操作时再进行类似的操作,也就是加上父亲节点储存的要增加的值,看代码+注释:
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#include<cmath>
using namespace std;
const int N=100000+10;
int n,m,s[N];
struct node
{
int l,r;
long long n,add;//注意数据范围;
} a[N<<2];
void build(int l,int r,int k)//构建就没啥好讲的;
{
a[k].l=l,a[k].r=r,a[k].add=0;
if(l==r)
{
a[k].n=s[l];
return ;
}
int mid=(l+r)/2;
build(l,mid,2*k);
build(mid+1,r,2*k+1);
a[k].n=a[k*2].n+a[k*2+1].n;
}
void update(int l,int r,int c,int k)
{
if(l<=a[k].l&&a[k].r<=r)
{
a[k].n+=(a[k].r-a[k].l+1)*c;//满足条件的话,这个区间每个元素都要加上c;
a[k].add+=c;将增加的值储存起来,下次更新操作时再往子节点更新;
return ;
}
if(a[k].add)//如果父亲节点增加值还在,那么子节点也要进行更新操作;
{
a[k*2].add+=a[k].add;
a[k*2+1].add+=a[k].add;
a[k*2].n+=(a[k*2].r-a[k*2].l+1)*a[k].add;
a[k*2+1].n+=(a[k*2+1].r-a[k*2+1].l+1)*a[k].add;
a[k].add=0;
}
int mid=(a[k].l+a[k].r)/2;
if(l<=mid) update(l,r,c,2*k);
if(r>mid) update(l,r,c,2*k+1);
a[k].n=a[k*2].n+a[k*2+1].n;回溯;
}
long long query(int l,int r,int k)
{
if(a[k].l==l&&a[k].r==r)
return a[k].n;
if(a[k].add)
{
a[k*2].add+=a[k].add;
a[k*2+1].add+=a[k].add;
a[k*2].n+=(a[k*2].r-a[k*2].l+1)*a[k].add;
a[k*2+1].n+=(a[k*2+1].r-a[k*2+1].l+1)*a[k].add;
a[k].add=0;
}
int mid=(a[k].l+a[k].r)/2;
if(l>mid) return query(l,r,2*k+1);
if(r<=mid) return query(l,r,2*k);
return query(l,mid,2*k)+query(mid+1,r,2*k+1);
}
int main()
{
while(~scanf("%d%d",&n,&m))
{
memset(a,0,sizeof(a));
for(int i=1; i<=n; i++)
scanf("%d",&s[i]);
build(1,n,1);
while(m--)
{
int a,b,c;
getchar();
char o=getchar();
if(o=='Q')
{
scanf("%d%d",&a,&b);
printf("%I64d\n",query(a,b,1));
}
else
{
scanf("%d%d%d",&a,&b,&c);
update(a,b,c,1);
}
}
}
return 0;
}
其实写出来发现也没什么改变,只不过关键在于更新和查询的时候往子节点所进行的操作;
POJ-3468A Simple Problem with Integers,线段数区间更新查询,代码打了无数次还是会出错~~的更多相关文章
- Poj 3468-A Simple Problem with Integers 线段树,树状数组
题目:http://poj.org/problem?id=3468 A Simple Problem with Integers Time Limit: 5000MS Memory Limit ...
- POJ 3468A Simple Problem with Integers(线段树区间更新)
A Simple Problem with Integers Time Limit: 5000MS Memory Limit: 131072K Total Submissions: 112228 ...
- POJ A Simple Problem with Integers 线段树 lazy-target 区间跟新
A Simple Problem with Integers Time Limit: 5000MS Memory Limit: 131072K Total Submissions: 105742 ...
- 3468-A Simple Problem with Integers 线段树(区间增减,区间求和)
A Simple Problem with Integers Time Limit: 5000MS Memory Limit: 131072K Total Submissions: 110077 ...
- poj 3468A Simple Problem with Integers
Description You have N integers, A1, A2, ... , AN. You need to deal with two kinds of operations. On ...
- POJ - 3468A Simple Problem with Integers (线段树区间更新,区间查询和)
You have N integers, A1, A2, ... , AN. You need to deal with two kinds of operations. One type of op ...
- POJ A Simple Problem with Integers | 线段树基础练习
#include<cstdio> #include<algorithm> #include<cstring> typedef long long ll; #defi ...
- 2018 ACMICPC上海大都会赛重现赛 H - A Simple Problem with Integers (线段树,循环节)
2018 ACM 国际大学生程序设计竞赛上海大都会赛重现赛 H - A Simple Problem with Integers (线段树,循环节) 链接:https://ac.nowcoder.co ...
- 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 ...
- [POJ] 3468 A Simple Problem with Integers [线段树区间更新求和]
A Simple Problem with Integers Description You have N integers, A1, A2, ... , AN. You need to deal ...
随机推荐
- #219. 【NOI2016】优秀的拆分
如果一个字符串可以被拆分为 AABBAABB 的形式,其中 AA 和 BB 是任意非空字符串,则我们称该字符串的这种拆分是优秀的. 例如,对于字符串 aabaabaa,如果令 A=aabA=aab ...
- P1554 梦中的统计
题目背景 Bessie 处于半梦半醒的状态.过了一会儿,她意识到她在数数,不能入睡. 题目描述 Bessie的大脑反应灵敏,仿佛真实地看到了她数过的一个又一个数.她开始注意每一个数码(0..9):每一 ...
- AJPFX总结抽象类和接口的区别
/* * 抽象类和接口的区别 * 1.成员的区别 * ...
- win10忘记wifi记录
1.点击桌面右下角无线图标 2.点击网络设置 3.点击管理WIFI设置 4.点击要管理的账户,忘记或者共享该wifi.
- SQLite – GLOB子句
SQLite – GLOB子句 .与LIKE不同,GLOB是大小写敏感的,它遵循语法的UNIX指定以下通配符. The asterisk sign (*) The question mark (?) ...
- node节点的部署
master点赋予用户权限 [root@mast-1 k8s]# kubectl create clusterrolebinding kubelet-bootstrap \ > --cluste ...
- redis.conf介绍
默认配置文件: # Redis configuration file example. # # Note that in order to read the configuration file, R ...
- django 127.0.0.1 将您重定向的次数过多
"GET /?next=/%3Fnext%3D/%253Fnext%253D/ HTTP/1.1" 302 0 solution reference from django.con ...
- HTML页面中5种超酷的伪类选择器:hover效果
想在自己的网站中应用超酷的hover效果吗?也许你可以从如下的这些实例中获得一些灵感,如果你喜欢这些效果,也可以直接拷贝代码并应用到你的站点. 给平淡的站点带来活力 hover效果能给网页增加一些动态 ...
- 教你学会Linux/Unix下的vi文本编辑器
vi编辑器是Unix/Linux系统管理员必须学会使用的编辑器.看了不少关于vi的资料,终于得到这个总结. 首先,记住vi编辑器的两个模式:1.命令模式 2.编辑模式. 在一个UNIX/Linux的s ...