码迷,mamicode.com
首页 > 其他好文 > 详细

BZOJ:1878: [SDOI2009]HH的项链

时间:2018-01-02 23:38:10      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:gpo   head   mem   const   return   line   sizeof   zoj   algo   

题解:解法一:莫队

解法二:按区间左端点排序,让区间内最左边的贝壳对答案产生贡献,树状数组维护,转移对答案产生贡献的贝壳位置

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>

using namespace std;
const int maxn=1000009;

int n,m;
int a[maxn];
int nex[maxn];
int ans[maxn];

int tong[maxn];

inline int lowbit(int x){
	return x&(-x);
}
int c[maxn];
int add(int x,int val){
	while(x<=1000001){
		c[x]+=val;
		x+=lowbit(x);
	}
}
int query(int x){
	int ret=0;
	while(x){
		ret+=c[x];
		x-=lowbit(x);
	}
	return ret;
}

struct Section{
	int l,r,id;
}sec[maxn];
int cmp(const Section &t1,const Section &t2){
	if(t1.l==t2.l)return t1.r<t2.r;
	else return t1.l<t2.l;
}

int main(){
	scanf("%d",&n);
	for(int i=1;i<=n;++i){
		scanf("%d",&a[i]);
		if(a[i]==0)a[i]=1000001;
	}
	for(int i=n;i>=1;--i){
		if(!tong[a[i]]){
			nex[i]=n+1;
		}else{
			nex[i]=tong[a[i]];
		}
		tong[a[i]]=i;
	}
	scanf("%d",&m);
	for(int i=1;i<=m;++i){
		scanf("%d%d",&sec[i].l,&sec[i].r);
		sec[i].id=i;
	}
	sort(sec+1,sec+1+m,cmp);
	
	memset(tong,0,sizeof(tong));
	for(int i=1;i<=n;++i){
		if(!tong[a[i]])add(i,1);
		tong[a[i]]=1;
	}
	
	int head=1;
	for(int i=1;i<=m;++i){
		while(head<sec[i].l){
			add(head,-1);
			add(nex[head],1);
			++head;
		}
		ans[sec[i].id]=query(sec[i].r)-query(sec[i].l-1);
	}
	for(int i=1;i<=m;++i)printf("%d\n",ans[i]);
	return 0;
}

  

BZOJ:1878: [SDOI2009]HH的项链

标签:gpo   head   mem   const   return   line   sizeof   zoj   algo   

原文地址:https://www.cnblogs.com/zzyer/p/8179150.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!