我是靠谱客的博主 留胡子云朵,最近开发中收集的这篇文章主要介绍Codeforces 220B Little Elephant and Array(莫队),觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
题目链接:http://codeforces.com/contest/220/problem/B
解题思路:
莫队+离散化
代码:
#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>
#define ll long long
#define for0(i,a,b) for (int i = a; i < b; i++)
#define for1(i,a,b) for (int i = a; i <= b; i++)
using namespace std;
const int N = 1e5+5;
const int M = 1e5+5;
const int MAXV = 1e5+5;
int blo,bl[N],m,n;
int v[N],mp[MAXV];
int sum;
int ans[M];
struct node
{
int l,r;
int id;
bool operator < (const node& a)const{
if (bl[l]==bl[a.l]) return r < a.r;
return bl[l] < bl[a.l];
}
}q[M];
int data[N];
void discrete(int a[],int n)///离散化
{
for (int i=1;i<=n;i++) data[i] = a[i];
sort(data+1,data+1+n);
int cnt = unique(data+1,data+1+n) - data;
for (int i=1;i<=n;i++) a[i] = lower_bound(data+1,data+1+n,a[i]) - data;
}
void REMOVE(int x)
{
if (mp[v[x]]==data[v[x]]) sum--;
mp[v[x]]--;
if (mp[v[x]]==data[v[x]]) sum++;
}
void ADD(int x)
{
if (mp[v[x]]==data[v[x]]) sum--;
mp[v[x]]++;
if (mp[v[x]]==data[v[x]]) sum++;
}
void solve()
{
int nowl = 1,nowr = 0;
for1(i,1,m){
int tl = q[i].l,tr = q[i].r;
while (nowr<tr) ADD(++nowr);
while (nowl>tl) ADD(--nowl);
while (nowr>tr) REMOVE(nowr--);
while (nowl<tl) REMOVE(nowl++);
ans[q[i].id] = sum;//ans[q[i].id] = mp.size();
}
}
int main()
{
scanf("%d",&n);
scanf("%d",&m);
blo = sqrt(n);
for1(i,1,n){
scanf("%d",v+i);
bl[i] = (i-1)/blo+1;
}
discrete(v,n);
for1(i,1,m){
scanf("%d %d",&q[i].l,&q[i].r);
q[i].id = i;
}
sort(q+1,q+1+m);
solve();
for1(i,1,m){
printf("%dn",ans[i]);
}
return 0;
}
最后
以上就是留胡子云朵为你收集整理的Codeforces 220B Little Elephant and Array(莫队)的全部内容,希望文章能够帮你解决Codeforces 220B Little Elephant and Array(莫队)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复