
线段树
文章平均质量分 81
Lionel_D
这个作者很懒,什么都没留下…
展开
-
poj 2352 Stars 用线段树实现 (有点水)
最近在学线段树,总感觉线段树的题目比较灵活,,用线段树的题目很容易和其他数据结构的题目区分开来。 URL:POJ:2352 这题主要在输入方面对做题很有优势,首先按y升序,y相同,按x升序。所以在考虑区间时,就可以只考虑x就可以。 这题如果用树状数组做的话,更容易,因为要统计区间内的星星数目。 废话不多说,上代码: #include #include #def原创 2014-11-27 18:56:27 · 784 阅读 · 0 评论 -
poj3468(A Simple Problem with Integers)线段树实现
POJ:3468 从下午开始做,一直做到晚上八点。ACM新手,刚接触线段树。 题意很简单,Q代表查寻一段区间内Ai的和,C表示往区间内增加。 这题如果直接老方法,就是更新到结点,查询到区间的话,,,很容易就超时, struct SegTree{ int left,right; long long count , add ; }st[MAX]; 所以为做这道题得学新东西。对线段原创 2014-11-27 20:59:20 · 732 阅读 · 0 评论 -
蓝桥杯 算法训练 操作格子 (线段树)
算法训练 操作格子 时间限制:1.0s 内存限制:256.0MB 问题描述 有n个格子,从左到右放成一排,编号为1-n。 共有m次操作,有3种操作类型: 1.修改一个格子的权值, 2.求连续一段格子权值和, 3.求连续一段格子的最大值。 对于每个2、3操作输出你所求出的结果。 输入格式 第一原创 2015-01-27 19:46:59 · 1062 阅读 · 0 评论 -
poj 3264 Balanced Lineup RMQ线段树实现
For the daily milking, Farmer John's N cows (1 ≤ N ≤ 50,000) always line up in the same order. One day Farmer John decides to organize a game of Ultimate Frisbee with some of the cows. To keep things simple, he will take a contiguous range of cows from the原创 2015-02-02 18:24:41 · 956 阅读 · 0 评论 -
poj 2828 Buy Tickets 万能的线段树大法。
Railway tickets were difficult to buy around the Lunar New Year in China, so we must get up early and join a long queue… The Lunar New Year was approaching, but unluckily the Little Cat still had schedules going here and there. Now, he had to travel by tra原创 2015-02-02 21:39:15 · 900 阅读 · 0 评论 -
hdu 1540 Tunnel Warfare 一个关于线段的故事~~~线段树是我无法言明的伤~
Problem Description During the War of Resistance Against Japan, tunnel warfare was carried out extensively in the vast areas of north China Plain. Generally speaking, villages connected by tunnels lay in a line. Except the two at the ends, every village wa原创 2015-03-25 20:09:47 · 912 阅读 · 0 评论 -
hdu 1255 覆盖的面积 线段树求面积的交 我感觉有点难啊~~第一次写这种类型的
给定平面上若干矩形,求出被这些矩形覆盖过至少两次的区域的面积. Input 输入数据的第一行是一个正整数T(1<=T<=100),代表测试数据的数量.每个测试数据的第一行是一个正整数N(1<=N<=1000),代表矩形的数量,然后是N行数据,每一行包含四个浮点数,代表平面上的一个矩形的左上角坐标和右下角坐标,矩形的上下边和X轴平行,左右边和Y轴平行.坐标的范围从0到100000. 注意:本题的输入数据较多,推荐使用scanf读入数据. Output 对于每组测试数据,请计算出被这些矩形覆原创 2015-03-07 20:34:51 · 961 阅读 · 0 评论 -
hdu 1542 Atlantis 线段树求面积并,,,尼玛数据真坑人,数组千万不能开小!
Problem Description There are several ancient Greek texts that contain descriptions of the fabled island Atlantis. Some of these texts even include maps of parts of the island. But unfortunately, these maps describe different regions of Atlantis. Your frie原创 2015-03-17 10:36:13 · 1108 阅读 · 0 评论