记录编号 |
586811 |
评测结果 |
AAAAAAAAAAAAAAAAAAAA |
题目名称 |
[国家集训队2011]数颜色 |
最终得分 |
100 |
用户昵称 |
┭┮﹏┭┮ |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.392 s |
提交时间 |
2024-02-29 16:57:43 |
内存使用 |
12.52 MiB |
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int N = 2e5+10;
//时间轴带修莫队
int n,m,cnt,tim,blo;
int c[N],f[1000010],ans[N],sum;
struct made{
int id,t,l,r;
bool operator < (const made x)const{
if(l / blo != x.l / blo)return l < x.l;
else if(r / blo != x.r / blo)return r < x.r;
else return t < x.t;
}
}q[N];
struct node{
int x,c;
}a[N];
void add(int x){
if(f[x] == 0)sum++;
f[x]++;
}
void del(int x){
f[x]--;
if(f[x] == 0)sum--;
}
void work(){
sort(q+1,q+1+cnt);
int l = 1,r = 0,t = 0;
for(int i = 1;i <= cnt;i++){
while(r < q[i].r)add(c[++r]);
while(l > q[i].l)add(c[--l]);
while(r > q[i].r)del(c[r--]);
while(l < q[i].l)del(c[l++]);
while(t < q[i].t){
t++;
if(a[t].x >= l && a[t].x <= r)del(c[a[t].x]),add(a[t].c);
swap(c[a[t].x],a[t].c);
}
while(t > q[i].t){
if(a[t].x >= l && a[t].x <= r)del(c[a[t].x]),add(a[t].c);
swap(c[a[t].x],a[t].c);
t--;
}
ans[q[i].id] = sum;
}
}
int main(){
freopen("nt2011_color.in","r",stdin);
freopen("nt2011_color.out","w",stdout);
scanf("%d%d",&n,&m);
blo = pow(n,2.0/3.0);
for(int i = 1;i <= n;i++)scanf("%d",&c[i]);
for(int i = 1;i <= m;i++){
char c[2];int x,y;
scanf("%s%d%d",c,&x,&y);
if(c[0] == 'Q')q[++cnt] = {cnt,tim,x,y};
else a[++tim] = {x,y};
}
work();
for(int i = 1;i <= cnt;i++)printf("%d\n",ans[i]);
return 0;
}