上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页
摘要: 线段树几个基本操作 单点查询 单点修改 区间查询 区间修改 区间求最大值 主要思想: 将一个线性的一维数组构建成树形的数组,使得可以用二分的思想来进行区间操作,降低时间复杂度,但是多占用了空间,典型的用空间换时间。 一个特殊的模块: lazy数组,考虑到对区间的操作有很多次,并且没有必要每一次对区间 阅读全文
posted @ 2018-08-05 21:52 Daybreaking 阅读(158) 评论(0) 推荐(0) 编辑
摘要: A rooted tree is a well-known data structure in computer science and engineering. An example is shown below: In the figure, each node is labeled with 阅读全文
posted @ 2018-08-05 21:26 Daybreaking 阅读(178) 评论(0) 推荐(0) 编辑
摘要: Description Natasha is planning an expedition to Mars for nn people. One of the important tasks is to provide food for each participant. The warehouse 阅读全文
posted @ 2018-08-05 16:03 Daybreaking 阅读(184) 评论(0) 推荐(0) 编辑
摘要: Description A bracket sequence is a string containing only characters "(" and ")". A regular bracket sequence is a bracket sequence that can be transf 阅读全文
posted @ 2018-08-05 15:58 Daybreaking 阅读(260) 评论(0) 推荐(0) 编辑
摘要: You have a Petri dish with bacteria and you are preparing to dive into the harsh micro-world. But, unfortunately, you don't have any microscope nearby 阅读全文
posted @ 2018-08-05 15:53 Daybreaking 阅读(249) 评论(0) 推荐(0) 编辑
摘要: There are nn houses in a row. They are numbered from 11 to nn in order from left to right. Initially you are in the house 11. You have to perform kk m 阅读全文
posted @ 2018-08-04 10:44 Daybreaking 阅读(187) 评论(0) 推荐(0) 编辑
摘要: Slava plays his favorite game "Peace Lightning". Now he is flying a bomber on a very specific map. Formally, map is a checkered field of size 1 × n, t 阅读全文
posted @ 2018-08-04 10:39 Daybreaking 阅读(176) 评论(0) 推荐(0) 编辑
摘要: Even if the world is full of counterfeits, I still regard it as wonderful. Pile up herbs and incense, and arise again from the flames and ashes of its 阅读全文
posted @ 2018-08-04 10:33 Daybreaking 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 看了很长时间大佬的博客,终于明白了区间修改和单点查询的原理,因为大佬们的思维比较强大,所以菜鸡决定写一篇较为详细的解释。 首先引入差分数组d,设原数组为a,令d[i]=a[i]-a[i-1].由此关系式得,也就是a[j]等于d[j]的前 j 项和,即前缀和。 于此,我们的树状数组维护的是 d 的前缀 阅读全文
posted @ 2018-08-02 17:07 Daybreaking 阅读(4363) 评论(0) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2018-07-31 08:07 Daybreaking 阅读(111) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页