题意
给定一个长度为n的数列,有m次询问,询问形如l r k
要你在区间[l,r]内选一个长度为k的区间,求区间最小数的最大值
Sol
二分答案
怎么判定,每种数字开一棵线段树
某个位置上的数大于等于它为1
那么就是求区间最大的1的序列长度大于k
二分的最优答案一定在这个区间内,否则不优
排序后就是用主席树优化空间
之前\(build\)一下,因为区间有长度不好赋值
# include <bits/stdc++.h>
# define RG register
# define IL inline
# define Fill(a, b) memset(a, b, sizeof(a))
using namespace std;
typedef long long ll;
const int _(1e5 + 5);
const int __(2e6 + 5);
IL int Input(){
RG int x = 0, z = 1; RG char c = getchar();
for(; c < '0' || c > '9'; c = getchar()) z = c == '-' ? -1 : 1;
for(; c >= '0' && c <= '9'; c = getchar()) x = (x << 1) + (x << 3) + (c ^ 48);
return x * z;
}
int n, m, tot, rt[_], a[_], id[_], ls[__], rs[__], o[_], len;
struct Data{
int maxl, maxr, maxn, len;
IL void Init(){
maxl = maxr = maxn = len = 0;
}
} T[__], Ans;
IL int Cmp(RG int x, RG int y){
return a[x] < a[y];
}
IL Data Merge(RG Data A, RG Data B){
RG Data ret;
ret.maxl = A.maxl, ret.maxr = B.maxr, ret.len = A.len + B.len;
ret.maxn = max(A.maxr + B.maxl, max(A.maxn, B.maxn));
if(A.maxl == A.len) ret.maxl = A.len + B.maxl;
if(B.maxr == B.len) ret.maxr = B.len + A.maxr;
return ret;
}
IL void Modify(RG int &x, RG int l, RG int r, RG int p){
ls[++tot] = ls[x], rs[tot] = rs[x], T[tot] = T[x], x = tot;
if(l == r){
T[x].maxl = T[x].maxr = T[x].maxn = 1;
return;
}
RG int mid = (l + r) >> 1;
if(p <= mid) Modify(ls[x], l, mid, p);
else Modify(rs[x], mid + 1, r, p);
T[x] = Merge(T[ls[x]], T[rs[x]]);
}
IL void Query(RG int x, RG int l, RG int r, RG int L, RG int R){
if(L <= l && R >= r){
Ans = Merge(Ans, T[x]);
return;
}
RG int mid = (l + r) >> 1;
if(L <= mid) Query(ls[x], l, mid, L, R);
if(R > mid) Query(rs[x], mid + 1, r, L, R);
}
IL void Build(RG int &x, RG int l, RG int r){
T[x = ++tot].len = r - l + 1;
if(l == r) return;
RG int mid = (l + r) >> 1;
Build(ls[x], l, mid), Build(rs[x], mid + 1, r);
}
int main(RG int argc, RG char* argv[]){
n = Input();
for(RG int i = 1; i <= n; ++i) id[i] = i, o[i] = a[i] = Input();
sort(id + 1, id + n + 1, Cmp), sort(o + 1, o + n + 1);
len = unique(o + 1, o + n + 1) - o - 1;
Build(rt[len + 1], 1, n);
for(RG int i = len, j = n; i; --i){
rt[i] = rt[i + 1];
for(; j && a[id[j]] == o[i]; --j)
Modify(rt[i], 1, n, id[j]);
}
m = Input();
for(RG int i = 1; i <= m; ++i){
RG int l = Input(), r = Input(), k = Input();
RG int L = 1, R = len, ans = 0;
while(L <= R){
RG int mid = (L + R) >> 1;
Ans.Init();
Query(rt[mid], 1, n, l, r);
if(Ans.maxn >= k) ans = mid, L = mid + 1;
else R = mid - 1;
}
printf("%d\n", o[ans]);
}
return 0;
}
CF484E Sign on Fence的更多相关文章
-
CF484E Sign on Fence &;&; [国家集训队]middle
CF484E Sign on Fence #include<bits/stdc++.h> #define RG register #define IL inline #define _ 1 ...
-
【CF484E】Sign on Fence(主席树)
[CF484E]Sign on Fence(主席树) 题面 懒得贴CF了,你们自己都找得到 洛谷 题解 这不就是[TJOI&HEOI 排序]那题的套路吗... 二分一个答案,把大于答案的都变成 ...
-
CF 484E - Sign on Fence
E. Sign on Fence time limit per test 4 seconds memory limit per test 256 megabytes input standard in ...
-
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 484E Sign on Fence(是持久的段树+二分法)
题目链接:Codeforces 484E Sign on Fence 题目大意:给定给一个序列,每一个位置有一个值,表示高度,如今有若干查询,每次查询l,r,w,表示在区间l,r中, 连续最长长度大于 ...
-
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的数 维护 ...
-
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 ...
-
「CF484E」Sign on Fence「整体二分」「线段树」
题意 给定一个长度为\(n\)的正整数序列,第\(i\)个数为\(h_i\),\(m\)个询问,每次询问\((l, r, w)\),为\([l, r]\)所有长度为\(w\)的子区间最小值的最大值.( ...
-
(困难) CF 484E Sign on Fence,整体二分+线段树
Bizon the Champion has recently finished painting his wood fence. The fence consists of a sequence o ...
随机推荐
-
手写json
json的意思是JavaScript 对象表示法 '{"0":0,"b":[3,4,5],"c":"0","d ...
-
android布局学习-使用FrameLayout和LinearLayout制作QQ空间底部导航栏
[声明:本博客通过学习“J灬叶小超 ”博客而写,链接:http://www.cnblogs.com/yc-755909659/p/4288260.html] --------------------- ...
-
leetcode 136
136. Single Number Given an array of integers, every element appears twice except for one. Find that ...
-
【SQL 代码】Sql分页(自用)
效果图: 下面是存储过程的创建,用的时候调用就行了 /****** Object: StoredProcedure [dbo].[spSqlPageByRownumber] Script Date: ...
-
可选的Web Components类库
首先需要说明的是这不是一篇 Web Components 的科普文章,如果对此了解不多推荐先读<A Guide to Web Components>. 有句古话-“授人以鱼,不如授人以渔” ...
-
bzoj1027
感觉网上很多题解写的似乎不清楚,这里说一下我的思路显然对于每个用户的材料(设其比例为Ai,Bi,Ci),我们要么最多用3种原料(设其比例为ai,bi,ci)混合成需要材料,要么一定混合不成,具体原因往 ...
-
使用Struts2开发Java Web应用程序(目录)
连接地址 http://blog.csdn.net/struts2/article/details/1721752
-
(转)iOS 开发,工程中混合使用 ARC 和非ARC
[前提知识] ARC:Automatic Reference Counting,自动引用计数 在开发 iOS 3 以及之前的版本的项目时我们要自己负责使用引用计数来管理内存,比如要手动 retain. ...
-
DBCC命令
DBCC SQLMGRSTATS 用于产生3个不同的值,这些值用在你想查看高速缓存在ad-hoc和预编译的TSQL语句中是如何工作的 Memory Used(8K Pages):若内存页的数量非常大, ...
-
GitHub和75亿美金
如果你是看到了75亿进来的,还在纳闷前面那个github的是个什么,你可以走人了?如果你进来是想看到微软两个字的,请继续. 微软以75亿美金的股票收购Github这件事情,从周六一早我爬山到香山琉璃塔 ...