2120. [國家集訓隊]數顏色【莫隊】
阿新 • • 發佈:2018-03-31
val har 數據 mes 區間 ask 顏色 blog pre
1 2 3 4 5 5
Q 1 4
Q 2 6
R 1 2
Q 1 4
Q 2 6
4
3
4
Description
墨墨購買了一套N支彩色畫筆(其中有些顏色可能相同),擺成一排,你需要回答墨墨的提問。墨墨會像你發布如下指令: 1、 Q L R代表詢問你從第L支畫筆到第R支畫筆中共有幾種不同顏色的畫筆。 2、 R P Col 把第P支畫筆替換為顏色Col。為了滿足墨墨的要求,你知道你需要幹什麽了嗎?
Input
第1行兩個整數N,M,分別代表初始畫筆的數量以及墨墨會做的事情的個數。第2行N個整數,分別代表初始畫筆排中第i支畫筆的顏色。第3行到第2+M行,每行分別代表墨墨會做的一件事情,格式見題幹部分。
Output
對於每一個Query的詢問,你需要在對應的行中給出一個數字,代表第L支畫筆到第R支畫筆中共有幾種不同顏色的畫筆。
Sample Input
6 51 2 3 4 5 5
Q 1 4
Q 2 6
R 1 2
Q 1 4
Q 2 6
Sample Output
44
3
4
HINT
對於100%的數據,N≤10000,M≤10000,修改操作不多於1000次,所有的輸入數據中出現的所有整數均大於等於1且不超過10^6。
莫隊模板題
#include<iostream> #include<cstring> #include<cstdio> #include<cmath> #include<algorithm> #define MAXN (1000000+10) using namespace std; struct node { int l,r,ord,id,ans,time; }Ask[MAXN]; struct node1 { int val,pre,pos; }Update[MAXN]; int l=1,r=0,now=0,n,m,Color_sum; int cnt[MAXN],a[MAXN],Anum,Unum; bool cmp1(node a,node b){return a.id==b.id?(a.r==b.r?a.time<b.time:a.r<b.r):a.id<b.id;} bool cmp2(node a,node b){return a.ord<b.ord;} void Del(int x) { cnt[x]--; if (!cnt[x]) Color_sum--; } void Ins(int x) { if (!cnt[x]) Color_sum++; cnt[x]++; } void Recovery(int x,int val) { if (l<=x && x<=r) { Ins(val); Del(a[x]); } a[x]=val; } void MoQueue(int x) { int L=Ask[x].l,R=Ask[x].r; while (now<Ask[x].time) Recovery(Update[now+1].pos,Update[now+1].val),now++; while (now>Ask[x].time) Recovery(Update[now].pos,Update[now].pre),now--; while (l>L) Ins(a[--l]); while (l<L) Del(a[l++]); while (r>R) Del(a[r--]); while (r<R) Ins(a[++r]); Ask[x].ans=Color_sum; } int main() { int x,y; char p; scanf("%d%d",&n,&m); int len=pow(n,2.0/3.0); for (int i=1;i<=n;++i) scanf("%d",&a[i]); for (int i=1;i<=m;++i) { scanf("\n%c%d%d",&p,&x,&y); if (p==‘Q‘) { Ask[++Anum].l=x;Ask[Anum].r=y; Ask[Anum].id=Ask[Anum].l/len; Ask[Anum].ord=Anum; Ask[Anum].time=Unum; } if (p==‘R‘) { Update[++Unum].pos=x; Update[Unum].val=y; Update[Unum].pre=a[x]; a[x]=y; } } for (int i=Unum;i>=1;--i)//恢復a區間 a[Update[i].pos]=Update[i].pre; sort(Ask+1,Ask+Anum+1,cmp1); for (int i=1;i<=m;++i) MoQueue(i); sort(Ask+1,Ask+Anum+1,cmp2); for (int i=1;i<=Anum;++i) printf("%d\n",Ask[i].ans); }
2120. [國家集訓隊]數顏色【莫隊】