题意

给定一个长度为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的更多相关文章

  1. CF484E Sign on Fence && [国家集训队]middle

    CF484E Sign on Fence #include<bits/stdc++.h> #define RG register #define IL inline #define _ 1 ...

  2. 【CF484E】Sign on Fence(主席树)

    [CF484E]Sign on Fence(主席树) 题面 懒得贴CF了,你们自己都找得到 洛谷 题解 这不就是[TJOI&HEOI 排序]那题的套路吗... 二分一个答案,把大于答案的都变成 ...

  3. CF 484E - Sign on Fence

    E. Sign on Fence time limit per test 4 seconds memory limit per test 256 megabytes input standard in ...

  4. 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 ...

  5. Codeforces 484E Sign on Fence(是持久的段树+二分法)

    题目链接:Codeforces 484E Sign on Fence 题目大意:给定给一个序列,每一个位置有一个值,表示高度,如今有若干查询,每次查询l,r,w,表示在区间l,r中, 连续最长长度大于 ...

  6. 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的数 维护 ...

  7. 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 ...

  8. 「CF484E」Sign on Fence「整体二分」「线段树」

    题意 给定一个长度为\(n\)的正整数序列,第\(i\)个数为\(h_i\),\(m\)个询问,每次询问\((l, r, w)\),为\([l, r]\)所有长度为\(w\)的子区间最小值的最大值.( ...

  9. (困难) CF 484E Sign on Fence,整体二分+线段树

    Bizon the Champion has recently finished painting his wood fence. The fence consists of a sequence o ...

随机推荐

  1. CometD的消息推送

    CometD 框架 CometD 框架是基于 HTTP 的事件驱动通信解决方案.CometD 框架提供了一个 Java 服务器部件和一个 Java 客户端部件,还有一个基于 jQuery 和 Dojo ...

  2. [Python Study Notes] 抉择--Python2.x Or Python 3.x

    In summary : Python 2.x is legacy, Python 3.x is the present and future of the language Python 3.0 w ...

  3. dedecms判断当前页面是否为首页 织梦设置首页高亮

    做织梦网站导航栏时,我们一般需要设置当前栏目高亮显示,这个使用currentstyle就能直接实现,但是如果在首页时怎么让首页模块高亮呢? 织梦当前栏目高亮: <style>.hover{ ...

  4. Python基础总结

      刚学习Python时,边学边总结的,采用思维导图的形式, 适合回顾使用.内容参考<Python:从入门到实践>一书.   再给出一张Datacamp网站上的一张关于Python基础的总 ...

  5. Appium基于Python unittest自动化测试 & 自动化测试框架 -- PO并生成html测试报告

    基于python单元测试框架unittest完成appium自动化测试,生成基于html可视化测试报告 代码示例: #利用unittest并生成测试报告 class Appium_test(unitt ...

  6. J2ee的13个规范

    以下来自于网络. 1.JDBC(java Database Connectivity): JDBC API为访问不同的数据库提供了一种统一的途径,就像ODBC一样,JDBC对开发者屏蔽了一些细节问题, ...

  7. Centos下快速安装Nginx

    1.准备工作 选首先安装这几个软件:GCC,PCRE(Perl Compatible Regular Expression),zlib,OpenSSL. Nginx是C写的,需要用GCC编译:Ngin ...

  8. onclick与this

    这个其实也是一个很基础的问题,不过又碰巧遇到了,所以记录一下. 假设我们有这么一个需求,按下按钮,弹出提示框,显示按钮的value值. 可能有一些人提起笔就写: <button onclick= ...

  9. NOIP2017 - 宝藏

    LibreOJ链接 Description 给出一个\(n(n\leq12)\)个点\(m(m\leq1000)\)条边的带权无向图,求该图的一棵生成树,使得其边权×该边距根的深度之和最小. Solu ...

  10. 获得某个月的天数(java, mysql, oracle)

    java方式: Calendar   cal   =   Calendar.getInstance(); cal.set(Calendar.YEAR,year); cal.set(Calendar.M ...