Codeforces - 220B Little Elephant and Array(莫队模板题+离散化)

B. Little Elephant and Array

time limit per test

4 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

The Little Elephant loves playing with arrays. He has array a, consisting of n positive integers, indexed from 1 to n. Let's denote the number with index i as ai.

Additionally the Little Elephant has m queries to the array, each query is characterised by a pair of integers lj and rj (1 ≤ lj ≤ rj ≤ n). For each query lj, rj the Little Elephant has to count, how many numbers x exist, such that number x occurs exactly x times among numbers alj, alj + 1, ..., arj.

Help the Little Elephant to count the answers to all queries.

Input

The first line contains two space-separated integers n and m (1 ≤ n, m ≤ 105) — the size of array a and the number of queries to it. The next line contains n space-separated positive integers a1, a2, ..., an (1 ≤ ai ≤ 109). Next m lines contain descriptions of queries, one per line. The j-th of these lines contains the description of the j-th query as two space-separated integers lj and rj (1 ≤ lj ≤ rj ≤ n).

Output

In m lines print m integers — the answers to the queries. The j-th line should contain the answer to the j-th query.

Examples

input

Copy

7 2
3 1 2 2 3 3 7
1 7
3 4

output

Copy

3
1

题意:

n个数,m次查询。每次查询范围[L,R]中出现次数等于该数字的数字个数。

分析:

莫队算法+离散化  注意add和del函数的Ans都可能增值或者减值

#include<cstdio>
#include<iostream>
#include<fstream>
#include<algorithm>
#include<functional>
#include<cstring>
#include<string>
#include<cstdlib>
#include<iomanip>
#include<numeric>
#include<cctype>
#include<cmath>
#include<ctime>
#include<queue>
#include<stack>
#include<list>
#include<set>
#include<map>
using namespace std;
const int maxn=100010;
typedef long long ll;
int n,m,k;
struct node
{
    int l,r,id;
}Q[maxn]; ///保存询问值
int pos[maxn];///保存所在块
bool cmp(const node &a,const node &b)
{
   return pos[a.l]<pos[b.l]||(pos[a.l]==pos[b.l]&&(pos[a.l]&1?a.r<b.r:a.r>b.r));///奇偶排序
   //if(pos[a.l]==pos[b.l]) return a.r<b.r;//先按l所在的块排,如果相等就按r排
    //else return pos[a.l]<pos[b.l];
}
ll num[maxn*2];///保存区间的个数
///num要定义成ll,wa了好久
ll a[maxn],b[maxn],c[maxn];

ll ans[maxn],ans2[maxn];
int L=0,R=0;
ll Ans=0;
void add(int x)
{
	
	num[c[x]]++;
	if(num[c[x]]==a[x]) Ans++;
	else if(num[c[x]]==a[x]+1) Ans--;
	
}
void del(int x)
{
	
	num[c[x]]--;
	if(num[c[x]]==a[x]) Ans++;
	else if(num[c[x]]+1==a[x]) Ans--;
	
}
int main()
{    

    while(~scanf("%d%d",&n,&m))
    {
	memset(num,0,sizeof(num));
	
	     
	//scanf("%d",&n);
	//int sz=n/sqrt(m*2/3);
	int sz=sqrt(n*1.0); ///不加1.0尽然编译错误
	
    for(int i=1;i<=n;i++)
    {
        scanf("%lld",&a[i]);
        pos[i]=i/sz;
        b[i] = a[i];
	}
        sort(b+1, b+n+1);
        int num1 = unique(b+1, b+n+1)-b-1;
        for(int i = 1; i <= n; i++)
        	 c[i] = lower_bound(b+1, b+num1+1, a[i])-b;
 

    for(int i=1;i<=m;i++)
    {
        scanf("%d%d",&Q[i].l,&Q[i].r);
        Q[i].id=i;
    }
    sort(Q+1,Q+1+m,cmp);
	num[0]=0;
    L=1;R=0;Ans=0;
    for(int i=1;i<=m;i++) 
    {
        while(R<Q[i].r)
        {
            R++;
            add(R);
        }
        while(L>Q[i].l) ///前缀和L+1>Q[i].l
        {
            L--;
            add(L);
        }
        while(L<Q[i].l)///前缀和L+1<Q[i].l
        {
            del(L);
            L++;
        }
        while(R>Q[i].r)
        {
            del(R);
            R--;
        }
        ans[Q[i].id]=Ans;
    }
   // printf("Case %d:\n",cas);
     for(int i=1;i<=m;i++)
        printf("%I64d\n",ans[i]);
    }
    return 0;
}

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值