
线段树 & 树状数组
线段树 & 树状数组
feng_zhiyu
这个作者很懒,什么都没留下…
展开
-
【PAT甲级】1057 Stack (30)(BIT+二分)
题目链接Stack is one of the most fundamental data structures, which is based on the principle of Last In First Out (LIFO). The basic operations include Push (inserting an element onto the top position) ...原创 2018-08-01 22:09:02 · 428 阅读 · 0 评论 -
【nowcoder】情人节的电灯泡(暴力 / 二维树状数组)
链接:https://www.nowcoder.com/acm/contest/77/E 来源:牛客网时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32768K,其他语言65536K 64bit IO Format: %lld 题目描述 情人节到了,小芳和小明手牵手,打算过一个完美的情人节,但是小刚偏偏也来了,当了一个明晃晃的电灯泡,小明很尴尬,就和小刚说,我交给...原创 2018-02-26 14:46:28 · 488 阅读 · 0 评论 -
【nowcoder】Tree Recovery(线段树-区间更新 / 前缀和与差分)
链接:https://www.nowcoder.com/acm/contest/77/H 来源:牛客网时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 131072K,其他语言262144K 64bit IO Format: %lld 题目描述 You have N integers, A1, A2, … , AN. You need to deal with two...原创 2018-02-26 14:13:27 · 451 阅读 · 0 评论 -
【nowcoder】Big Water Problem(线段树,单点更新,区间求和)
链接:https://www.nowcoder.com/acm/contest/77/B 来源:牛客网时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 131072K,其他语言262144K 64bit IO Format: %lld 题目描述 给一个数列,会有多次询问,对于每一次询问,会有两种操作: 1:给定两个整数x, y, 然后在原数组的第x位置上加y; 2...原创 2018-02-26 12:16:09 · 355 阅读 · 0 评论 -
历届试题 小朋友排队(树状数组)
时间限制:1.0s 内存限制:256.0MB 提交此题 问题描述 n 个小朋友站成一排。现在要把他们按身高从低到高的顺序排列,但是每次只能交换位置相邻的两个小朋友。 每个小朋友都有一个不高兴的程度。开始的时候,所有小朋友的不高兴程度都是0。 如果某个小朋友第一次被要求交换,则他的不高兴程度增加1,如果第二次要求他交换,则他的不高兴程度增加2(即不高兴程度为3),依次类推。当要求某个原创 2017-12-29 23:32:21 · 371 阅读 · 0 评论 -
(poj 3667) Hotel(区间更新)
The cows are journeying north to Thunder Bay in Canada to gain cultural enrichment and enjoy a vacation on the sunny shores of Lake Superior. Bessie, ever the competent travel agent, has named the Bull原创 2017-08-10 17:43:55 · 442 阅读 · 0 评论 -
(hdu 1698) Just a Hook(区间更新)
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 34260 Accepted Submission(s): 16716Problem Description In the game of DotA, Pudge’s meat ho原创 2017-08-10 11:27:25 · 466 阅读 · 0 评论 -
(poj3468)A Simple Problem with Integers(区间更新)
DescriptionYou 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原创 2017-08-10 11:02:28 · 414 阅读 · 0 评论 -
(hdu 1166)敌兵布阵(线段树入门,单点更新)
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 96497 Accepted Submission(s): 40786Problem Description C国的死对头A国这段时间正在进行军事演习,所以C国间谍头子Derek和他原创 2017-08-10 09:59:42 · 394 阅读 · 0 评论 -
(hdu 1754) I Hate It(线段树基础,单点更新)
Time Limit: 9000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 81074 Accepted Submission(s): 31166Problem Description 很多学校流行一种比较的习惯。老师们很喜欢询问,从某某到某某当中,分数最高原创 2017-08-10 09:56:41 · 356 阅读 · 0 评论 -
线段树_初步
1.单点更新2.区间更新3.区间合并4.扫描线,离散化技术原创 2017-08-10 09:53:22 · 345 阅读 · 0 评论 -
(hdu1394)Minimum Inversion Number (树状数组/线段树/归并排序)
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 20737 Accepted Submission(s): 12434Problem Description The inversion number of a given n...原创 2017-07-28 19:45:47 · 457 阅读 · 0 评论 -
树状数组(BIT)
树状数组(BIT)是能够完成下述操作的数据结构。 在解题过程中,我们有时需要维护一个数组的前缀和S[i]=A[1]+A[2]+...+A[i]。 但是不难发现,如果我们修改了任意一个A[i],S[i]、S[i+1]...S[n]都会发生变化。可以说,每次修改A[i]后,调整前缀和S[]在最坏情况下会需要O(n)的时间。当n非常大时,程序会运行得非常缓慢。因此,这里我们引...原创 2017-06-28 18:04:53 · 432 阅读 · 0 评论 -
Josephus Problem
题目描述Do you know the famous Josephus Problem? There are n people standing in a circle waiting to be executed. The counting out begins at the first people in the circle and proceeds around the circl原创 2017-06-18 14:36:04 · 2060 阅读 · 2 评论 -
数据结构——线段树
http://blog.youkuaiyun.com/metalseed/article/details/8039326(更新中.....)一:线段树基本概念1:概述线段树,类似区间树,是一个完全二叉树,它在各个节点保存一条线段(数组中的一段子数组),主要用于高效解决连续区间的动态查询问题,由于二叉结构的特性,它基本能保持每个操作的复杂度为O(lgN)!性质:父转载 2017-06-17 12:28:31 · 532 阅读 · 0 评论