Thor is getting used to the Earth. As a gift Loki gave him a smartphone. There are n applications on this phone. Thor is fascinated by this phone. He has only one minor issue: he can't count the number of unread notifications generated by those applications (maybe Loki put a curse on it so he can't).

q events are about to happen (in chronological order). They are of three types:

  1. Application x generates a notification (this new notification is unread).
  2. Thor reads all notifications generated so far by application x (he may re-read some notifications).
  3. Thor reads the first t notifications generated by phone applications (notifications generated in first t events of the first type). It's guaranteed that there were at least t events of the first type before this event. Please note that he doesn't read first t unread notifications, he just reads the very first t notifications generated on his phone and he may re-read some of them in this operation.

Please help Thor and tell him the number of unread notifications after each event. You may assume that initially there are no notifications in the phone.

Input

The first line of input contains two integers n and q (1 ≤ n, q ≤ 300 000) — the number of applications and the number of events to happen.

The next q lines contain the events. The i-th of these lines starts with an integer typei — type of the i-th event. If typei = 1 or typei = 2 then it is followed by an integer xi. Otherwise it is followed by an integer ti (1 ≤ typei ≤ 3, 1 ≤ xi ≤ n, 1 ≤ ti ≤ q).

Output

Print the number of unread notifications after each event.

Examples

Input

3 4
1 3
1 1
1 2
2 3

Output

1
2
3
2

Input

4 6
1 2
1 4
1 2
3 3
1 3
1 3

Output

1
2
3
0
1
2

Note

In the first sample:

  1. Application 3 generates a notification (there is 1 unread notification).
  2. Application 1 generates a notification (there are 2 unread notifications).
  3. Application 2 generates a notification (there are 3 unread notifications).
  4. Thor reads the notification generated by application 3, there are 2 unread notifications left.

In the second sample test:

  1. Application 2 generates a notification (there is 1 unread notification).
  2. Application 4 generates a notification (there are 2 unread notifications).
  3. Application 2 generates a notification (there are 3 unread notifications).
  4. Thor reads first three notifications and since there are only three of them so far, there will be no unread notification left.
  5. Application 3 generates a notification (there is 1 unread notification).
  6. Application 3 generates a notification (there are 2 unread notifications).

题意:手机上共n个应用,有q个操作,操作共有3种,(1)应用x产生一条消息 (2)读完应用x的所有消息 (3)读前x个消息(产生时间最早的)

思路:数据比较大,存储前驱,适当剪枝

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int inf = 0x3f3f3f3f;
const int N = 3e5 + 20;

int pre[N];
bool vis[N];
int a[N];

int main()
{
    int n, t, k, id;
    while(~scanf("%d%d", &n, &t))
    {
        memset(vis, 0, sizeof(vis));
        memset(pre, 0, sizeof(pre));
        memset(a, 0, sizeof(a));
        int tot = 0;
        int sum = 0;
        int maxx = 0;
        for(int i = 1; i <= t; ++i)
        {
            scanf("%d%d", &k, &id);
            if(k == 1)
            {
                pre[++tot] = a[id];
                a[id] = tot;
                sum++;
            }
            else if(k == 2)
            {
                while(a[id] && !vis[a[id]])
                {
                    vis[a[id]] = 1;
                    a[id] = pre[a[id]];
                    sum--;
                }
            }
            else
            {
                for(int j = maxx + 1; j <= id; ++j)
                {
                    if(!vis[j])
                    {
                        sum--;
                        vis[j] = 1;
                    }
                }
                maxx = max(maxx, id);
            }
            cout<<sum<<'\n';
        }
    }
    return 0;
}