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

AC日记——采花 洛谷 P2056

时间:2017-06-04 23:04:52      阅读:380      评论:0      收藏:0      [点我收藏+]

标签:type   ==   color   printf   blog   bit   www   ret   upd   

采花

 

思路:

  莫队;

 

代码:

#include <bits/stdc++.h>
using namespace std;
#define maxn 100005
int bel[maxn];
struct QueryType {
    int l,r,id;
    bool operator <(const QueryType pos)const
    {
        if(bel[l]==bel[pos.l]) return r<pos.r;
        else return bel[l]<bel[pos.l];
    }
};
struct QueryType qu[maxn];
int n,c,m,num[maxn],ans[maxn],now,blo,ai[maxn];
inline void in(int &now)
{
    char Cget=getchar();now=0;
    while(Cget>9||Cget<0) Cget=getchar();
    while(Cget>=0&&Cget<=9)
    {
        now=now*10+Cget-0;
        Cget=getchar();
    }
}
inline void updata(int x,int di)
{
    x=ai[x];
    if(di<0)
    {
        if(num[x]==2) now--;
        num[x]--;
    }
    else
    {
        if(num[x]==1) now++;
        num[x]++;
    }
}
int main()
{
    in(n),in(c),in(m),blo=sqrt(n);
    for(int i=1;i<=n;i++) in(ai[i]),bel[i]=(i+1)/blo;
    for(int i=1;i<=m;i++) in(qu[i].l),in(qu[i].r),qu[i].id=i;
    sort(qu+1,qu+m+1);int l=1,r=0;
    for(int no=1;no<=m;no++)
    {
        while(r<qu[no].r) updata(++r,1);
        while(r>qu[no].r) updata(r--,-1);
        while(l>qu[no].l) updata(--l,1);
        while(l<qu[no].l) updata(l++,-1);
        ans[qu[no].id]=now;
    }
    for(int i=1;i<=m;i++) printf("%d\n",ans[i]);
    return 0;
}

 

AC日记——采花 洛谷 P2056

标签:type   ==   color   printf   blog   bit   www   ret   upd   

原文地址:http://www.cnblogs.com/IUUUUUUUskyyy/p/6941948.html

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