码迷,mamicode.com
首页 >  
搜索关键字:线段树区间合并    ( 154个结果
(简单) HDU 3397 Sequence operation,线段树+区间合并。
Problem Description lxhgww got a sequence contains n characters which are all '0's or '1's. We have five operations here: Change operations: 0 a...
分类:其他好文   时间:2015-01-08 14:59:13    阅读次数:288
(简单) HDU 3308 LCIS,线段树+区间合并。
Problem Description Given n integers. You have two operations: U A B: replace the Ath number by B. (index counting from 0) Q A B: output the len...
分类:其他好文   时间:2015-01-08 00:52:30    阅读次数:194
(简单) POJ 3667 Hotel,线段树+区间合并。
Description The cows are journeying north to Thunder Bay in Canada to gain cultural enrichment and enjoy a vacation on the sunny shores of Lake Sup...
分类:其他好文   时间:2015-01-07 23:29:31    阅读次数:341
HDU5107---K-short Problem (线段树区间 合并、第k大)
题意:二维平面上 N 个高度为 Hi 建筑物,M次询问,每次询问输出 位于坐标(x ,y)左下角(也就是xi 2 #include 3 #include 4 #include 5 using namespace std; 6 7 const int maxn = 3e4+10;...
分类:其他好文   时间:2014-11-22 18:51:10    阅读次数:201
POJ 3667 Hotel ( 线段树区间合并 )
线段树区间合并...
分类:其他好文   时间:2014-11-13 18:59:31    阅读次数:263
POJ--2892--Tunnel Warfare【线段树】区间合并
链接:http://poj.org/problem?id=2892 题意:有n个村庄排成一排,三种操作: 1. D x 摧毁村庄x 2. Q x 询问村庄x的最长一段没有被摧毁的村庄数量 3. R   恢复上一个被摧毁的村庄 思路:线段树区间合并,lsum记录当前节点往左的最长连续距离,rsum记录当前节点往右的最长连续距离。 #include #include #in...
分类:其他好文   时间:2014-11-13 18:58:16    阅读次数:179
hdu1540 线段树区间合并
简单线段树区间合并...
分类:其他好文   时间:2014-11-10 10:06:14    阅读次数:164
HDU 3911 线段树区间合并
北京赛区快了,准备突击数据结构和图论,倒计时 18天,线段树区间合并,维护一个最长连续。。 题意:给一个01串,下面有一些操作,问区间最长的连续的1的个数 思路:很裸的线段树区间合并 #include #include #include #include #include #define lson id << 1 #define rson id << 1|1 using namespace ...
分类:其他好文   时间:2014-10-28 12:18:38    阅读次数:143
POJ 3667 Hotel (线段树区间合并 )
Language: Default Hotel Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 12417   Accepted: 5346 Description The cows are journeying north to Thunder Bay i...
分类:其他好文   时间:2014-10-24 14:47:14    阅读次数:261
ural 1019 Line Painting(线段树)
题目链接:ural 1019 Line Painting 题目大意:一个0~1e9的区间,初始都是白的,现进行N次操作,每次将一段区间图上一中颜色。最后问说连续最长的白色区间。 解题思路:线段树区间合并,每个节点即维护一个区间,很经典。注意坐标需要离散化,但是还是要将0和1e9放进去。 #include #include #include using namespace st...
分类:其他好文   时间:2014-10-24 00:21:20    阅读次数:227
154条   上一页 1 ... 11 12 13 14 15 16 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!