BZOJ 2223 [Coci 2009]PATULJCI 主席树

Description

Input

Output

10 3 1 2 1 2 1 2 3 2 3 3 8 1 2 1 3 1 4 1 5 2 5 2 6 6 9 7 10

Sample Input

no
yes 1
no
yes 1
no
yes 2
no
yes 3

Sample Output

HINT

Notice:输入第二个整数是序列中权值的范围Lim,即1<=ai(1<=i<=n)<=Lim。

1<=Lim<=10000




传送门

bzoj3524~~~

完全一样的题= =

我连数据范围都没改就交了……

注意一下输出的格式两题是不同的。



#include<bits/stdc++.h>
using namespace std;
int read(){
    int x=0,f=1;char ch=getchar();
    while (ch<'0' || ch>'9'){if (ch=='-') f=-1;ch=getchar();}
    while (ch>='0' && ch<='9'){x=x*10+ch-'0';ch=getchar();}
    return x*f;
}
const int 
	N=500005,
	logN=25;
int n,LIM,Tcnt;
int root[N];
struct ChairTree{
	int l,r,num;
}ct[N*logN];
void insert(int L,int R,int &x,int val){
	ct[Tcnt++]=ct[x];
	x=Tcnt-1;
	ct[x].num++;
	if (L==R) return;
	int mid=(L+R)>>1;
	if (val<=mid) insert(L,mid,ct[x].l,val);
		else insert(mid+1,R,ct[x].r,val);
}
int query(int L,int R,int ll,int rr,int g){
	if (L==R) return L;
	int mid=(L+R)>>1,
		t1=ct[ct[rr].l].num-ct[ct[ll].l].num,
		t2=ct[ct[rr].r].num-ct[ct[ll].r].num;
	if (t1>g) return query(L,mid,ct[ll].l,ct[rr].l,g); else
	if (t2>g) return query(mid+1,R,ct[ll].r,ct[rr].r,g);
		else return 0;
}
int main(){
	n=read(),LIM=read();
	root[0]=0,Tcnt=1;
	for (int i=1;i<=n;i++)
		root[i]=root[i-1],insert(1,LIM,root[i],read());
	int x,y,m=read();
	while (m--){
		x=read(),y=read();
		int t=query(1,LIM,root[x-1],root[y],(y-x+1)>>1);
		if (!t) puts("no");
			else printf("yes %d\n",t);
	}
	return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值