[BZOJ1878][SDOI2009]HH的项链

2 篇文章 0 订阅

原题地址

十几分钟码完T了差不多一个小时,最后发现分块那里除写成模……这个状态真是没救了……

AC code:

#include <cstdio>
#include <algorithm>
#include <cmath>
using namespace std;
const int N=200010;
int n,m,k,tot,L,R;
int a[N],cnt[N],ans[N];

struct Query{
    int l,r,num;

    friend bool operator<(Query x,Query y){
        if(x.l/k!=y.l/k) return x.l/k<y.l/k;
        return x.r<y.r;
    }
}q[N];

struct D{
    int val,pos;

    friend bool operator<(D x,D y){
        return x.val<y.val;
    }
};

void discre(){
    D d[N];
    for(int i=1;i<=n;i++) d[i].val=a[i],d[i].pos=i;
    sort(d+1,d+n+1);
    for(int i=1,j=0;i<=n;i++){
        if(i==1||d[i].val!=d[i-1].val) j++;
        a[d[i].pos]=j;
    }
}

int main(){
    scanf("%d",&n);
    for(int i=1;i<=n;i++) scanf("%d",&a[i]);
    discre();
    scanf("%d",&m);
    for(int i=1;i<=m;i++){
        q[i].num=i;
        scanf("%d%d",&q[i].l,&q[i].r);
    }
    k=(int)sqrt(n);
    sort(q+1,q+m+1);
    L=q[1].l;R=q[1].r;
    for(int i=L;i<=R;i++){
        if(!cnt[a[i]]) tot++;
        cnt[a[i]]++;
    }
    ans[q[1].num]=tot;
    for(int i=2;i<=m;i++){
        if(q[i].l<L){
            for(int j=q[i].l;j<L;j++){
                if(!cnt[a[j]]) tot++;
                cnt[a[j]]++;
            }
        }
        else{
            for(int j=L;j<q[i].l;j++){
                if(cnt[a[j]]==1) tot--;
                cnt[a[j]]--;
            }
        }
        if(R<q[i].r){
            for(int j=R+1;j<=q[i].r;j++){
                if(!cnt[a[j]]) tot++;
                cnt[a[j]]++;
            }
        }
        else{
            for(int j=q[i].r+1;j<=R;j++){
                if(cnt[a[j]]==1) tot--;
                cnt[a[j]]--;
            }
        }
        L=q[i].l;R=q[i].r;
        ans[q[i].num]=tot;
    }
    for(int i=1;i<=m;i++) printf("%d\n",ans[i]);

    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值