BZOJ 2653

Description

一个长度为n的序列a,设其排过序之后为b,其中位数定义为b[n/2],其中a,b从0开始标号,除法取下整。给你一个
长度为n的序列s。回答Q个这样的询问:s的左端点在[a,b]之间,右端点在[c,d]之间的子序列中,最大的中位数。
其中a

Input

第一行序列长度n。接下来n行按顺序给出a中的数。
接下来一行Q。然后Q行每行a,b,c,d,我们令上个询问的答案是
x(如果这是第一个询问则x=0)。
令数组q={(a+x)%n,(b+x)%n,(c+x)%n,(d+x)%n}。
将q从小到大排序之后,令真正的
要询问的a=q[0],b=q[1],c=q[2],d=q[3]。  
输入保证满足条件。
第一行所谓“排过序”指的是从大到小排序!

Output

Q行依次给出询问的答案。

Sample Input

5
170337785
271451044
22430280
969056313
206452321
3
3 1 0 2
2 3 1 4
3 1 4 0

271451044
271451044
969056313

Sample Output

HINT

  0:n,Q<=100

1,...,5:n<=2000

0,...,19:n<=20000,Q<=25000


Source

/*
对于中位数x一定存在区间内大于x的个数==小于x的个数或者 于x的个数==小于x的个数+1,因此可以先预处理出将每个数作为中位数将比它小的赋为-1,比它大的赋为1,如果它是合法
答案,不然存在合法区间的值>=0所以只需要二分x就行。 
*/
#include
#include
#include
#include
#include
#define N 90000
typedef long long LL;
int n;
struct p{
    LL v;
    int pos;
}poi[N];
int root[N],ls[N*60],rs[N*60],c[N*60],tot,lmax[N],rmax[N];
LL pp[6];
inline bool cmp(const p a,const p b){return a.vR)return 0;
    if (l<=L&&R<=r)return c[rt];
    int mid=(L+R)/2;
    int m=0;
    if (l<=mid)m+=askall(ls[rt],L,mid,l,r);
    if (midR||l>r)return 0;
    if (l<=L&&R<=r)return rmax[rt];
    int mid=(L+R)/2;
    if (midR||l>r)return 0;
    if (l<=L&&R<=r)return lmax[rt];
    int mid=(L+R)/2;
    if (mid=0)return 1;else return 0;
}
void build(int &rt,int l,int r){
    if (!rt) rt=++tot;
    if (l==r){
        lmax[rt]=rmax[rt]=c[rt]=1;
        return ;
    }
    int mid=(l+r)/2;
    if (l<=mid)build(ls[rt],l,mid);
    if (mid


你可能感兴趣的:(主席树,最大字段和,线段树)