【NOI模拟】维护队列

Description

 你小时候玩过弹珠吗?
  小朋友A有一些弹珠,A喜欢把它们排成队列,从左到右编号为1到N。为了整个队列鲜艳美观,小朋友想知道某一段连续弹珠中,不同颜色的弹珠有多少。当然,A有时候会依据个人喜好,替换队列中某个弹珠的颜色。但是A还没有学过编程,且觉得头脑风暴太浪费脑力了,所以向你来寻求帮助。

Solution

待修改的莫队算法,裸体!
带修改的莫队算法
有道原题【uva12345】Dynamic len

Code

#include
#include
#include
#include
#include
#define fo(i,a,b) for(i=a;i<=b;i++)
#define fod(i,a,b) for(i=a;i>=b;i--)
using namespace std;
const int maxn=50007;
struct node{
    int l,r,x,p;
}a[maxn];
struct nod{
    int x,y,o;
}d[maxn];
int i,j,k,l,t,n,m,ans,now,kuai[maxn],da,last[maxn],tot,num,r;
bool bz[maxn];
int shu[1000007],b[maxn],ans1[maxn];
char s[10];
bool cmp(node x,node y){
    return kuai[x.l]void update(int x){
    if(bz[x]){
        shu[b[x]]--;
        if(!shu[b[x]])ans--;    
    }
    else{
        shu[b[x]]++;
        if(shu[b[x]]==1)ans++;
    }
    bz[x]^=1;
}
void change(int x,int y){
    if(bz[x]){
        update(x);b[x]=y;update(x);
    }
    else b[x]=y;
}
int main(){
    //freopen("fan.in","r",stdin);
    //freopen("fan.out","w",stdout);
    scanf("%d%d",&n,&m);
    da=500;
    fo(i,1,n)scanf("%d",&b[i]),kuai[i]=i/da,last[i]=b[i];
    fo(i,1,m) {
        scanf("%s%d%d",s,&k,&l);
        if (s[0]=='Q')a[++tot].l=k,a[tot].r=l,a[tot].x=num,a[tot].p=tot;
        else d[++num].x=k,d[num].o=last[k],d[num].y=l,last[k]=l;
    }
    sort(a+1,a+1+tot,cmp);
    l=1;
    fo(i,1,tot){
        if (now1,a[i].x)change(d[j].x,d[j].y);
        else fod(j,now,a[i].x+1)change(d[j].x,d[j].o);
        if (l1)update(j);
        else fo(j,a[i].l,l-1)update(j);
        if (r1,a[i].r)update(j);
        else fo(j,a[i].r+1,r)update(j);
        ans1[a[i].p]=ans;l=a[i].l;r=a[i].r;now=a[i].x;
    }
    fo(i,1,tot)printf("%d\n",ans1[i]);
}

你可能感兴趣的:(noi,分块大法,暴搜,莫队算法)