线段树
文章平均质量分 81
Yorke213
这个作者很懒,什么都没留下…
展开
-
HDU 4819 Mosaic
二维线段树。先找到X的对应,再找Y的对应。注意UPDATE要写好 yi原创 2014-05-20 16:38:45 · 454 阅读 · 0 评论 -
HDU 4973 A simple simulation problem.
一道线段树 多校的时候有点想歪了最后时间又不够结果没写出~~。。。后来改了20分钟就g原创 2014-08-21 20:21:36 · 468 阅读 · 0 评论 -
hdu 4718 The LCIS on the Tree
求树上的最长上升子串树链剖分+线段树,代码比较长。还有个做法是动态树,下次再看看#include #include #include #include #include using namespace std;const int N = 1e5+5;struct EG{ int v, next;} eg[N];int cnt;int head[N];原创 2015-04-16 12:56:54 · 335 阅读 · 0 评论