#include<bits/stdc++.h>
using namespace std;
const int M = 1e5+10;
const int inf = 0x3f3f3f3f;
int n,m,sz,rt;
int c[M][2],id[M],fa[M],v[M],siz[M],pos[M],a[M];
inline void pushup(int k){
int l = c[k][0],r = c[k][1];
siz[k] = siz[l] + siz[r] + 1;
}
void rotate(int x,int &k){
int y = fa[x],z = fa[y],l,r;
if(c[y][0] == x) l = 0;
else l = 1;
r = l^1;
if(y == k) k = x;
else {
if(c[z][0]==y) c[z][0]=x;
else c[z][1] = x;
}
fa[x] = z;fa[y] = x;fa[c[x][r]]=y;
c[y][l]=c[x][r]; c[x][r]=y;
pushup(y); pushup(x);
}
void splay(int x,int &k){
while(x != k){
int y = fa[x],z = fa[y];
if(y != k){
if(c[y][0]==x^c[z][0]==y)rotate(x,k);
else rotate(y,k);
}
rotate(x,k);
}
}
int find(int k,int rk){
int l = c[k][0],r = c[k][1];
if(siz[l] + 1 == rk) return k;
else if(siz[l] >= rk) return find(l,rk);
else return find(r,rk-siz[l]-1);
}
inline void build(int l,int r,int f)
{
if(l>r)return;
int now=l,last=f;
if(l==r)
{
v[now]=a[l];siz[now]=1;fa[now]=last;
if(l<f)c[last][0]=now;
else c[last][1]=now;
return;
}
int mid=(l+r)>>1;now=mid;
build(l,mid-1,mid);build(mid+1,r,mid);
v[now]=a[mid];fa[now]=last;
if(mid<f)c[last][0]=now;
else c[last][1]=now;
pushup(now);
}
inline void del(int k){
int x,y,z;
x = find(rt,k-1);y = find(rt,k+1);
splay(x,rt); splay(y,c[x][1]);
z = c[y][0]; c[y][0] = 0;
fa[z] = siz[z] = 0;
pushup(y); pushup(x);
}
void update(int k,int val){
int x,y,z=pos[k],rk;
splay(z,rt); rk = siz[c[z][0]]+1;
del(rk);
if(val == inf) x = find(rt,n),y = find(rt,n+1);
else if(val == -inf) x = find(rt,1),y = find(rt,2);
else x = find(rt,rk+val-1),y = find(rt,rk+val);
splay(x,rt); splay(y,c[x][1]);
siz[z] = 1;fa[z] = y; c[y][0] = z;
pushup(y); pushup(x);
}
int main()
{
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
cin>>n>>m;
for(int i = 2;i <= n+1;i ++)
cin>>a[i],pos[a[i]] = i;
build(1,n+2,0); rt = (3+n) >> 1;
string op;int x,y;
for(int i = 1;i <= m;i ++){
cin>>op>>x;
if(op[0]==‘B‘) update(x,inf);
else if(op[0] == ‘T‘) update(x,-inf);
else if(op[0] == ‘I‘) cin>>y,update(x,y);
else if(op[0] == ‘A‘) splay(pos[x],rt),cout<<siz[c[pos[x]][0]]-1<<endl;
else if(op[0] == ‘Q‘) cout<<v[find(rt,x+1)]<<endl;
}
return 0;
}