BZOJ2223PATULJCI

2223: [Coci 2009]PATULJCI
Time Limit: 10 Sec Memory Limit: 259 MB
Submit: 713 Solved: 286
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有出入的地方一个是输出,一个是update的时候由n变成limit。。
附上本蒟蒻的代码:

#include<iostream>
#include<cstdio>
using namespace std;
int n,m,sz,root[500001],ls[10000001],rs[10000001],sum[10000001],limit;

int read()
{
    int w=0,c=1; char ch=getchar();
    while (ch<'0' || ch>'9')
      {
        if (ch=='-') c=-1;
        ch=getchar();
      }
    while (ch>='0' && ch<='9')
      w=w*10+ch-'0',ch=getchar();
    return w*c;
}

void update(int l,int r,int x,int &y,int v)
{
    int mid=(l+r)/2;
    y=++sz,sum[y]=sum[x]+1;
    if (l==r) return;
    ls[y]=ls[x],rs[y]=rs[x];
    if (v<=mid) update(l,mid,ls[x],ls[y],v);
    else update(mid+1,r,rs[x],rs[y],v);
}

int query(int L,int R)
{
    if (L>R) swap(L,R);
    int l=1,r=limit,mid,x,y,tmp=(R-L+1)/2;
    x=root[L-1],y=root[R];
    while (l!=r)
      {
        if (sum[y]-sum[x]<=tmp) return 0;
        mid=(l+r)/2;
        if (sum[ls[y]]-sum[ls[x]]>tmp)
          r=mid,x=ls[x],y=ls[y];
        else if (sum[rs[y]]-sum[rs[x]]>tmp) l=mid+1,x=rs[x],y=rs[y];
        else return 0;
      }
    return l;
}

int main()
{
    int i,l,r,x,ans;
    n=read(),limit=read();
    for (i=1;i<=n;i++)
      x=read(),update(1,limit,root[i-1],root[i],x);
    m=read();
    for (i=1;i<=m;i++)
      {
        l=read(),r=read(),ans=query(l,r);
        if (ans)
          printf("%s %d\n","yes",ans);
        else
          printf("%s\n","no");
      }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值