include <iostream>
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <string.h>
#include <queue> //noi2004 伸展树(第几大---转化为第几小)
#define N 100111
using namespace std;
int pre[N], key[N], ch[N][2], root, tot, size[N], add; //add统一处理,因为它是整个区间改变,所以无需延时标志
//size表示节点的大小,注意,相等的元素要统一分到右边
void update(int x)
{
size[x]=size[ch[x][0]]+size[ch[x][1]]+1;
}
void rotate(int x, int kind) //kind为0表示左旋,kind为1表示右旋
{
int k=pre[x], g;
ch[k][!kind]=ch[x][kind];
pre[ch[x][kind]]=k;
g=pre[k];
ch[x][kind]=k;
pre[x]=pre[k];
pre[k]=x;
update(k);
if(g)ch[g][ch[g][1]==k]=x; //草,原来是这里
return ;
}
void Splay(int x, int goal)
{
int k, g, h;
while(pre[x]!=goal)
{
k=pre[x];
if(pre[k]==goal)
{
rotate(x, key[k]>key[x]);
}
else
{
g=(ch[k][0]==x?0:1);
h=(ch[pre[k]][0]==k?0:1);
if(g==h)
{
rotate(k, !g);
rotate(x, !g);
}
else
{
rotate(x, key[k]>key[x]);
rotate(x, key[pre[x]]>key[x]);
}
}
}
if(!goal)root=x;
update(x);
return ;
}
void insert(int k)
{
int r=root, g, h;
if(!r)
{
tot++;
ch[tot][0]=ch[tot][1]=0;
key[tot]=k;
root=tot;
size[tot]=1;
return ;
}
while(r)
{
g=r;
if(key[r]>k)
r=ch[r][0];
else r=ch[r][1];
}
tot++;
ch[g][key[g]<=k]=tot; //注意,相等的元素要统一分到右边
pre[tot]=g;
key[tot]=k;
ch[tot][0]=ch[tot][1]=0;
size[tot]=1;
Splay(tot, 0);
return ;
}
void Delete(int k) //选择树中小于k的最大key值及其位置
{
int x = root ;
int xx = 0 ;
while(x) {
if(key[x] < k) {
xx = x ;
x = ch[x][1] ;
} else {
x = ch[x][0] ;
}
}
if(!xx)return ;
Splay(xx , 0) ;
if(ch[xx][1] == 0) {
root = 0 ;
return ;
}
root = ch[xx][1];
pre[root] = 0 ;
}
int select(int k, int r) //返回第几小的元素
{
if(size[ch[r][0]]+1==k)
return key[r]+add;
else if(size[ch[r][0]]+1>k)
return select(k, ch[r][0]);
else return select(k-size[ch[r][0]]-1, ch[r][1]);
}
int main()
{
int n, k, peo=0, min1;
char c;
add=root=tot=0;
scanf("%d%d", &n, &min1);
while(n--)
{
scanf("\n");
scanf("%c %d", &c, &k);
if(c=='I'&&k>=min1)
{
insert(k-add);
peo++;
continue;
}
if(c=='A')
{
add+=k;
continue;
}
if(c=='S')
{
add-=k;
Delete(min1-add);
continue;
}
if(c=='F')
{
if(size[root]<k)
{
printf("-1\n");
}
else printf("%d\n", select(size[root]-k+1, root));
}
}
printf("%d\n", peo-size[root]);
return 0;
}