Codeforces 484E Sign on Fence(是持久的段树+二分法)
题目链接:Codeforces 484E Sign on Fence
题目大意:给定给一个序列,每一个位置有一个值,表示高度,如今有若干查询,每次查询l,r,w,表示在区间l,r中,
连续最长长度大于w的最大高度为多少。
解题思路:可持久化线段树维护区间合并,前端时间碰到一题可持久化字典树,就去查了一下相关论文,大概知道了是
什么东西。
将高度依照从大到小的顺序排序,然后每次插入一个位置,线段树维护最长连续区间,由于插入是依照从大到小的顺
序,所以每次的线段树中的连续最大长度都是满足高度大于等于当前新插入的height值。对于每次查询,二分高度,因
为高度肯定是在已有的高度中,所以仅仅接二分下表就可以。
#include <cstdio>
#include <cstring>
#include <vector>
#include <algorithm>
using namespace std;
const int maxn = 1e6 + 5;
typedef pair<int,int> pii;
struct Node {
int lc, rc, lp, rp, L, R, S;
int length() {
return rp - lp + 1;
}
}nd[maxn << 2];
int N, sz, root[maxn];
pii blo[maxn];
inline int newNode() {
return sz++;
}
inline void pushup(int u) {
int lcid = nd[u].lc, rcid = nd[u].rc;
nd[u].L = nd[lcid].L + (nd[lcid].L == nd[lcid].length() ? nd[rcid].L : 0);
nd[u].R = nd[rcid].R + (nd[rcid].R == nd[rcid].length() ? nd[lcid].R : 0);
nd[u].S = max(nd[lcid].R + nd[rcid].L, max(nd[lcid].S, nd[rcid].S));
}
inline Node merge(Node a, Node b) {
Node u;
u.lp = a.lp; u.rp = b.rp;
u.L = a.L + (a.L == a.length() ? b.L : 0);
u.R = b.R + (b.R == b.length() ? a.R : 0);
u.S = max(a.R + b.L, max(a.S, b.S));
return u;
}
void build(int& u, int l, int r) {
if (u == 0) u = newNode();
nd[u] = (Node){0, 0, l, r, 0, 0, 0};
if (l == r)
return;
int mid = (l + r) >> 1;
build(nd[u].lc, l, mid);
build(nd[u].rc, mid +1, r);
pushup(u);
}
int insert(int u, int x) {
int k = newNode();
nd[k] = nd[u];
if (nd[k].lp == x && x == nd[k].rp) {
nd[k].S = nd[k].L = nd[k].R = 1;
return k;
}
int mid = (nd[k].lp + nd[k].rp) >> 1;
if (x <= mid)
nd[k].lc = insert(nd[k].lc, x);
else
nd[k].rc = insert(nd[k].rc, x);
pushup(k);
return k;
}
Node query(int u, int l, int r) {
if (l <= nd[u].lp && nd[u].rp <= r)
return nd[u];
int mid = (nd[u].lp + nd[u].rp) >> 1;
if (r <= mid)
return query(nd[u].lc, l, r);
else if (l > mid)
return query(nd[u].rc, l, r);
else {
Node ll = query(nd[u].lc, l, r);
Node rr = query(nd[u].rc, l, r);
return merge(ll, rr);
}
}
inline bool cmp (const pii& a, const pii& b) {
return a.first > b.first;
}
void init () {
sz = 1;
scanf("%d", &N);
for (int i = 1; i <= N; i++) {
scanf("%d", &blo[i].first);
blo[i].second = i;
}
sort(blo + 1, blo + 1 + N, cmp);
build(root[0], 1, N);
for (int i = 1; i <= N; i++)
root[i] = insert(root[i-1], blo[i].second);
}
int main () {
init();
int q, l, r, w;
scanf("%d", &q);
while (q--) {
scanf("%d%d%d", &l, &r, &w);
int L = 1, R = N;
while (L < R) {
int mid = (L + R) >> 1;
if (query(root[mid], l, r).S >= w)
R = mid;
else
L = mid + 1;
}
printf("%d\n", blo[L].first);
}
return 0;
}
Codeforces 484E Sign on Fence(是持久的段树+二分法)的更多相关文章
- (困难) CF 484E Sign on Fence,整体二分+线段树
Bizon the Champion has recently finished painting his wood fence. The fence consists of a sequence o ...
- CF 484E - Sign on Fence
E. Sign on Fence time limit per test 4 seconds memory limit per test 256 megabytes input standard in ...
- BZOJ 2588 Count on a tree (COT) 是持久的段树
标题效果:两棵树之间的首次查询k大点的权利. 思维:树木覆盖树,事实上,它是正常的树木覆盖了持久段树. 由于使用权值段树可以寻求区间k大,然后应用到持久段树思想,间隔可以做减法.详见代码. CODE: ...
- Codeforces Round #276 (Div. 1) E. Sign on Fence (二分答案 主席树 区间合并)
链接:http://codeforces.com/contest/484/problem/E 题意: 给你n个数的,每个数代表高度: 再给出m个询问,每次询问[l,r]区间内连续w个数的最大的最小值: ...
- AC日记——Sign on Fence Codeforces 484e
E. Sign on Fence time limit per test 4 seconds memory limit per test 256 megabytes input standard in ...
- CF&&CC百套计划4 Codeforces Round #276 (Div. 1) E. Sign on Fence
http://codeforces.com/contest/484/problem/E 题意: 给出n个数,查询最大的在区间[l,r]内,长为w的子区间的最小值 第i棵线段树表示>=i的数 维护 ...
- Codeforces Round #276 (Div. 1) E. Sign on Fence 二分+主席树
E. Sign on Fence Bizon the Champion has recently finished painting his wood fence. The fence consi ...
- codeforces 349B Color the Fence 贪心,思维
1.codeforces 349B Color the Fence 2.链接:http://codeforces.com/problemset/problem/349/B 3.总结: 刷栅栏.1 ...
- 【CF484E】Sign on Fence(主席树)
[CF484E]Sign on Fence(主席树) 题面 懒得贴CF了,你们自己都找得到 洛谷 题解 这不就是[TJOI&HEOI 排序]那题的套路吗... 二分一个答案,把大于答案的都变成 ...
随机推荐
- IE 加速插件之 Google Chrome Frame
前言 IE 8 及以下版本的速度较慢. 特别是前端的js 和 css 内容较多时尤为突出. 就笔者的开发经验来说GWT, Ext JS, raphael , draw2d 等开发的系统在IE下使用是相 ...
- vim在编译器 . 命令(点命令)
时间:2014.06.28 地点:基地 -------------------------------------------------------------------------------- ...
- Cocos2dx 3.x创建Layer的步骤
创建 1.新建类文件.注意文件夹为Classes下.否则文件不能正常找到. 2.改动预编译头.如用VS,默觉得#pragma once,为了兼容,改为#ifndef | #define | #endi ...
- 你的App为什么上不了TOP10?
App市场风起云涌.但是,却仅仅有少数几个App能成为"暴发户",很多其它的则沉淀在应用商店中无人问津. 在移动互联网时代.智能手机成为了中心. 手机之所以智能.就在于手机上 ...
- Cocos2dx项目启程一 之 封装属于我的精灵类
给自己的假期就快要结束了,该要做点事情了,哪怕简单的不好的也比不做的有意义. /*#pragma once 保证头文件只被编译一次 #pragma once是编译器相关的,就是说即使这个编译系统上有效 ...
- C++ STL源代码学习之算法篇
///因为篇幅太长,因此,删去了非常多接口,仅仅分析了内部实现,算法对迭代器的要求也被删去 /// search. template <class _ForwardIter1, class _F ...
- centos一些命令
1.查看系统使用端口并释放端口 [root@my_nn_01 WEB-INF]# lsof -w -n -i tcp:80 COMMAND PID USER FD TYPE DEVICE ...
- hdu 1398 Square Coins(生成函数,完全背包)
pid=1398">链接:hdu 1398 题意:有17种货币,面额分别为i*i(1<=i<=17),都为无限张. 给定一个值n(n<=300),求用上述货币能使价值 ...
- BIEE11g BI_server Jvm參数调整
1.找到user_projects\domains\bifoundation_domain\bin文件夹 2.复制startWeblogic.sh为新的文件startAdminWeblogic.sh, ...
- BZOJ 1975 SDOI2010 魔法猪学院 A*k短路
题目大意:给定一个值E 求起点到终点的最多条路径 使长度之和不超过E k短路的A*算法--每一个点有一个估价函数=g[x]+h[x] 当中g[x]是从源点出发已经走了的长度 h[x]是从这个点到汇点的 ...