记录编号 280050 评测结果 AAAAAAAAAA
题目名称 [SDOI 2009] HH的项链 最终得分 100
用户昵称 GravatarHzoi_ 是否通过 通过
代码语言 C++ 运行时间 0.770 s
提交时间 2016-07-09 20:38:13 内存使用 3.74 MiB
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<map>
#include<algorithm>
#define lowbit(x) ((x)&(-(x)))
using namespace std;
namespace mine{
	inline int getint(){
		static int __c,__x;
		static bool __neg;
		__x=0;
		__neg=false;
		do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
		if(__c=='-'){
			__neg=true;
			__c=getchar();
		}
		for(;__c>='0'&&__c<='9';__c=getchar())__x=__x*10+(__c^48);
		if(__neg)return -__x;
		return __x;
	}
	inline long long getll(){
		static long long __x;
		static char __c;
		static bool __neg;
		__x=0;
		__neg=false;
		do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
		if(__c=='-'){
			__neg=true;
			__c=getchar();
		}
		for(;__c>='0'&&__c<='9';__c=getchar())__x=__x*10+(__c^48);
		if(__neg)return -__x;
		return __x;
	}
	inline void putint(int __x){
		static int __a[40],__i,__j;
		static bool __neg;
		__neg=__x<0;
		if(__neg)__x=-__x;
		__i=0;
		do{
			__a[__i++]=__x%10+48;
			__x/=10;
		}while(__x);
		if(__neg)putchar('-');
		for(__j=__i-1;__j^-1;__j--)putchar(__a[__j]);
	}
	inline void putll(long long __x){
		static int __a[40],__i,__j;
		static bool __neg;
		__neg=__x<0;
		if(__neg)__x=-__x;
		__i=0;
		do{
			__a[__i++]=__x%10+48;
			__x/=10;
		}while(__x);
		if(__neg)putchar('-');
		for(__j=__i-1;__j^-1;__j--)putchar(__a[__j]);
	}
}
using namespace mine;
const int maxn=50010,maxm=200010;;
struct cmd{
	int l,r,id;
	bool operator<(const cmd &x)const{
		return r<x.r;
	}
}b[maxm];
void add(int,int);
int query(int);
map<int,int>p;
int n,m,a[maxn],c[maxn]={0},ans[maxm],k=1;
int main(){
#define MINE
#ifdef MINE
	freopen("diff.in","r",stdin);
	freopen("diff.out","w",stdout);
#endif
	n=getint();
	for(int i=1;i<=n;i++)a[i]=getint();
	m=getint();
	for(int i=1;i<=m;i++){
		b[i].l=getint();
		b[i].r=getint();
		b[i].id=i;
	}
	sort(b+1,b+m+1);
	for(int i=1;i<=n;i++){
		add(i,1);
		if(p[a[i]])add(p[a[i]],-1);
		p[a[i]]=i;
		while(b[k].r==i){
			ans[b[k].id]=query(b[k].r)-query(b[k].l-1);
			k++;
		}
	}
	for(int i=1;i<=m;i++){
		putint(ans[i]);
		putchar('\n');
	}
	return 0;
}
inline void add(int x,int y){
	while(x<=n){
		c[x]+=y;
		x+=lowbit(x);
	}
}
inline int query(int x){
	int result=0;
	while(x){
		result+=c[x];
		x-=lowbit(x);
	}
	return result;
}