【HDU - 4348】To the moon(主席树,区间更新)

题干:

Background 
To The Moon is a independent game released in November 2011, it is a role-playing adventure game powered by RPG Maker. 
The premise of To The Moon is based around a technology that allows us to permanently reconstruct the memory on dying man. In this problem, we'll give you a chance, to implement the logic behind the scene. 

You‘ve been given N integers A [1], A [2],..., A [N]. On these integers, you need to implement the following operations: 
1. C l r d: Adding a constant d for every {A i | l <= i <= r}, and increase the time stamp by 1, this is the only operation that will cause the time stamp increase. 
2. Q l r: Querying the current sum of {A i | l <= i <= r}. 
3. H l r t: Querying a history sum of {A i | l <= i <= r} in time t. 
4. B t: Back to time t. And once you decide return to a past, you can never be access to a forward edition anymore. 
.. N, M ≤ 10 5, |A [i]| ≤ 10 9, 1 ≤ l ≤ r ≤ N, |d| ≤ 10 4 .. the system start from time 0, and the first modification is in time 1, t ≥ 0, and won't introduce you to a future state.

Input

n m 
A 1 A 2 ... A n 
... (here following the m operations. )

Output

... (for each query, simply print the result. )

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 42 4
0 0
C 1 1 1
C 2 2 -1
Q 1 2
H 1 2 1

Sample Output

4
55
9
150
1

题目大意:

1. 将l到r之间所有的数+d,同时时间戳+1。 2. 查询当前时间戳下l到r的所有数的总和。 3..查询时间戳d下的l到r的所有数的和。 4.将时间戳返回至t。

解题报告:

因为涉及到主席树的区间操作,所以肯定要lazy标记,但是下传的时候,如果按照线段树的写法直接照搬过来,那需要pushdown操作,也就是说涉及到了两个孩子节点的修改,也就是说需要动态开两个节点,然后分别递归下去。这样的话最差复杂度和建n棵线段树应该是同阶的。

考虑优化这个节点太多的问题,既然是下传标记使得需要修改的节点数增多,那么尝试不下传标记?发现可以将标记留在节点上,查询时往下递归的过程遇到lazy则累加就行了,最后把标记的影响加到总答案里。(想了想感觉线段树其实也可以这么干,只不过在pushup的时候比较麻烦就是了,详见下一段)

注意这个题的pushup函数也要改,因为你.val代表的是当前节点及其孩子节点的正确的值,但是不一定等于两个孩子节点的val值的和,因为还有cur中没有下传的lazy标记,也要算进去。

AC代码:

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<queue>
#include<set>
#include<string>
#include<cmath>
#include<cstring>
#define FF first
#define SS second
#define ll long long
#define pb push_back
#define pm make_pair
using namespace std;
typedef pair<int,int> PII;
const int MAX = 1e5 + 5;
struct TREE {int l,r;ll val,lazy;
} tr[MAX*40];int tot;
int a[MAX];
int root[MAX];
void pushup(int cur,int l,int r) {tr[cur].val = tr[tr[cur].l].val + tr[tr[cur].r].val + tr[cur].lazy*(r-l+1);
} 
int build(int l,int r) {int cur = ++tot;tr[cur].lazy = 0;if(l == r) {tr[cur].val = a[l];//这一步好像没啥用? return cur;}int m = (l+r)>>1;tr[cur].l = build(l,m);tr[cur].r = build(m+1,r);pushup(cur,l,r);return cur;
}
int update(int pre,int pl,int pr,ll val,int l,int r) {int cur = ++tot;tr[cur] = tr[pre];if(pl <= l && pr >= r) {tr[cur].val += (r-l+1)*val;tr[cur].lazy += val;return cur;}int m = (l+r)>>1;if(pl <= m) tr[cur].l = update(tr[pre].l,pl,pr,val,l,m);if(pr >= m+1) tr[cur].r = update(tr[pre].r,pl,pr,val,m+1,r);pushup(cur,l,r);return cur;
}
ll query(int cur,int pl,int pr,ll laz,int l,int r) {if(pl <= l && pr >= r) return tr[cur].val + laz * (r-l+1);ll res = 0;laz += tr[cur].lazy;int m = (l+r)>>1;	if(pl <= m) res += query(tr[cur].l,pl,pr,laz,l,m);if(pr >= m+1) res += query(tr[cur].r,pl,pr,laz,m+1,r); return res;  
}
int main()
{int n,m,l,r;ll d;char op[5];while(cin>>n>>m) {for(int i = 1; i<=n; i++) cin>>a[i];int T = 0,t; tot=0;root[T] = build(1,n);while(m--) {scanf("%s",op);if(op[0] == 'C') {scanf("%d%d%lld",&l,&r,&d);T++;root[T] = update(root[T-1],l,r,d,1,n);//注意这里的序列是1~n就行了,而不是1~m!!! }else if(op[0] == 'Q') {scanf("%d%d",&l,&r);printf("%lld\n",query(root[T],l,r,0,1,n));}else if(op[0] == 'H') {scanf("%d%d%d",&l,&r,&t);printf("%lld\n",query(root[t],l,r,0,1,n));}else scanf("%d",&T);		}		}return 0 ;
}
/*
2 4
0 0
C 1 1 1
C 2 2 -1
Q 1 2
H 1 2 1
*/

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/439918.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

一步步编写操作系统 07 开机启动bios

bios是如何苏醒的 bios其实一直睡在某个地方&#xff0c;直到被唤醒……前面热火朝天的说了bios的功能和内存布局&#xff0c;似乎还没说到正题上&#xff0c;bios是如何启动的呢。因为bios是计算机上第一个运行的软件&#xff0c;所以它不可能自己加载自己&#xff0c;由此可…

0.《沉浸式线性代数》:前言

今天介绍一本新书《immersive linear algebra》&#xff1a;世界上第一本具有完全交互式图形的线性代数书。本书目前已经更新完毕。 作者是&#xff1a;JacobStrm&#xff0c;Kallestrm和Tomas Akenine-Mller&#xff0c;全文共包含11个部分&#xff1a;前言和10个正文章节。内…

【2019牛客暑期多校训练营(第二场) - D】Kth Minimum Clique(bfs,tricks)

题干&#xff1a; 链接&#xff1a;https://ac.nowcoder.com/acm/contest/882/D 来源&#xff1a;牛客网 Given a vertex-weighted graph with N vertices, find out the K-th minimum weighted clique. A subset of vertices of an undirected graph is called clique if …

Apollo进阶课程 ⑬ | Apollo无人车自定位技术入门

目录 1.什么是无人车自定位系统 2.为什么无人车需要精确的定位系统 2.1 激光定位 2.2 视觉定位 2.3 惯性导航 2.4 多传感器融合定位 原文链接&#xff1a;进阶课程 ⑬ | Apollo无人车自定位技术入门 上周阿波君为大家详细介绍了「Apollo进阶课程⑫丨Apollo地图生产技术」…

一步步编写操作系统 08 bios跳转到神奇的内存地址0x7c00

为什么是0x7c00 计算机执行到这份上&#xff0c;bios也即将完成自己的历史使命了&#xff0c;完成之后&#xff0c;它又将睡去。想到这里&#xff0c;心中不免一丝忧伤&#xff0c;甚至有些许挽留它的想法。可是&#xff0c;这就是它的命&#xff0c;它生来被设计成这样&…

【2019牛客暑期多校训练营(第二场) - H】Second Large Rectangle(单调栈,全1子矩阵变形)

题干&#xff1a; 链接&#xff1a;https://ac.nowcoder.com/acm/contest/882/H 来源&#xff1a;牛客网 题目描述 Given a NMN \times MNM binary matrix. Please output the size of second large rectangle containing all "1"\texttt{"1"}"1…

Apollo进阶课程⑭ | Apollo自动定位技术——三维几何变换和坐标系介绍

目录 1.三维几何变换---旋转 2.三维几何变换----平移 2.1刚体的位置和朝向 3. 坐标系 3.1 ECI地心惯性坐标系 3.2 ECFF地心地固坐标系 3.3当地水平坐标系 3.4 UTM坐标系 3.5 车体坐标系 3.6IMU坐标系 3.7 相机坐标系 3.8 激光雷达坐标系 3.9 无人车定位信息中涉及…

一步步编写操作系统 09 写个mbr

有点不好意思了&#xff0c;说了好久&#xff0c;才说到实质性的东西&#xff0c;好了&#xff0c;赶紧给客官上菜。 代码2-1&#xff08;c2/a/boot/mbr.S&#xff09;1 ;主引导程序2 ;------------------------------------------------------------3 SECTION MBR vstart0x7c…

【2019牛客暑期多校训练营(第二场)- F】Partition problem(dfs,均摊时间优化)

题干&#xff1a; 链接&#xff1a;https://ac.nowcoder.com/acm/contest/882/F 来源&#xff1a;牛客网 Given 2N people, you need to assign each of them into either red team or white team such that each team consists of exactly N people and the total competi…

Apollo进阶课程 ⑮丨Apollo自动定位技术详解—百度无人车定位技术

目录 1.百度无人车定位进化历程 2.百度自动驾驶应用的定位技术 2.1GNSS定位技术 2.2载波定位技术 2.3激光点云定位技术 2.4视觉定位技术 原文链接&#xff1a;进阶课程 ⑮丨Apollo自动定位技术详解—百度无人车定位技术 定位的目的是让自动驾驶汽车找到自身确切位置的方法…

一步步编写操作系统 10 cpu的实模式

cpu的实模式 由于mbr在实模式下工作……什么&#xff1f;什么是实模式&#xff1f;这时候有同学打断了我。我心想&#xff0c;这下好办了……哈哈&#xff0c;没有啦&#xff0c;开个玩笑而已。我们这里所说的实模式其实就是8086 cpu的工作环境、工作方式、工作状态&#xff0…

Ubuntu系统中使用搜狗输入法

今天介绍如何在Ubuntu中使用搜狗输入法。&#xff08;Ubuntu版本为16.04&#xff09; 1&#xff09;登陆搜狗官网选择对应系统的搜狗输入法&#xff1a;http://pinyin.sogou.com/linux。 2&#xff09;打开下载目录&#xff0c;命令行输入以下命令&#xff1a; sudo dpkg -i …

【2019牛客暑期多校训练营(第三场)- B】Crazy Binary String(思维,01串,前缀和)

题干&#xff1a; 链接&#xff1a;https://ac.nowcoder.com/acm/contest/883/B 来源&#xff1a;牛客网 ZYB loves binary strings (strings that only contains 0 and 1). And he loves equal binary strings\textit{equal binary strings}equal binary strings more, wh…

2.1)深度学习笔记:深度学习的实践层面

目录 1&#xff09;Train/Dev/Test sets 2&#xff09;Bias/Variance 3&#xff09;Regularization&#xff08;重点&#xff09; 4&#xff09;Why regularization reduces overfitting&#xff08;理解&#xff09; 5&#xff09;Dropout Regularization&#xff08;重点…

一步步编写操作系统 12 代码段、数据段、栈和cpu寄存器的关系

先说下什么是寄存器。 寄存器是一种物理存储元件&#xff0c;只不过它是比一般的存储介质要快&#xff0c;能够跟上cpu的步伐&#xff0c;所以在cpu内部有好多这样的寄存器用来给cpu存取数据。 先简短说这一两句&#xff0c;暂时离开一下主题&#xff0c;咱们先看看相对熟悉一…

【2019牛客暑期多校训练营(第三场)- F】Planting Trees(单调队列,尺取)

题干&#xff1a; 链接&#xff1a;https://ac.nowcoder.com/acm/contest/883/F 来源&#xff1a;牛客网 The semester is finally over and the summer holiday is coming. However, as part of your universitys graduation requirement, you have to take part in some …

Apollo进阶课程⑯丨Apollo感知之旅——感知概貌

原文链接&#xff1a;进阶课程⑯丨Apollo感知之旅——感知概貌 上周阿波君为大家详细介绍了「进阶课程⑮| Apollo无人车自定位技术入门」。 我们人类天生就配备多种传感器&#xff0c;眼睛可以看到周围的环境&#xff0c;耳朵可以用来听&#xff0c;鼻子可以用来嗅&#xff0c;…

一步步编写操作系统 13 栈

栈到底是什么玩意 cpu中有栈段SS寄存器和栈指针SP寄存器&#xff0c;它们是用来指定当前使用的栈的物理地址。换句话说&#xff0c;要想让cpu运行&#xff0c;必须得有栈。栈是什么?干吗用的&#xff1f;本节将给大家一个交待。 还记得数据结构中的栈吗&#xff1f;那是逻辑…

【2019牛客暑期多校训练营(第二场)- E】MAZE(线段树优化dp,dp转矩阵乘法,线段树维护矩阵乘法)

题干&#xff1a; 链接&#xff1a;https://ac.nowcoder.com/acm/contest/882/E?&headNavacm 来源&#xff1a;牛客网 Given a maze with N rows and M columns, where bijb_{ij}bij​ represents the cell on the i-row, j-th column. If bi,j"1"b_{i, j} …

Apollo进阶课程⑰丨Apollo感知之旅——传感器选择和安装

目录 1.激光雷达 2.相机 3.Radar毫米波 4.安装传感器 原文链接&#xff1a;进阶课程⑰丨Apollo感知之旅——传感器选择和安装 上周阿波君为大家详细介绍了「进阶课程⑯ Apollo感知之旅——感知概况」。 传感器是一种检测装置&#xff0c;能感受到被测量的信息&#xff0c;…