zoukankan      html  css  js  c++  java
  • CodeForces

    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.

    Example
    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个数删除,那么我们就可以当作队列中前n个数出队,其中要判断前n个数中已经被第一种删除操作删除的

           所以我们用数组来记录应用p的有效值的区域,比如zuo[p]=r代表r以前的是已经被删除了,面对已经被删除了的,就不进行操作了。

           而进行第一种删除操作的时候,我们只需要对队列中的进行操作,且不会产生冲突。

    代码如下:

    #include <cstdio>
    #include <iostream>
    #include <cstring>
    using namespace std;
    typedef long long ll;
    const int MAXN=3e5+10;
    int zuo[MAXN];
    int num[MAXN];
    int Q[MAXN];
    int main()
    {
        int n,q,l,r,a,b,now;
        while(scanf("%d%d",&n,&q)!=EOF)
        {
            now=0;
             memset(zuo,0,sizeof(zuo));
             memset(num,0,sizeof(num));
             l=0,r=0;
             while(q--)
             {
                 scanf("%d%d",&a,&b);
                 if(a==1)
                 {
                   Q[r++]=b;
                   now++;
                   num[b]++;
                 }
                else if(a==2)
                {
                   now-=num[b];
                   zuo[b]=r;
                   num[b]=0;
                }
                else
                {
                  if(l<b){
                  for(int i=l;i<b;i++)
                  {
                     if(i<zuo[Q[i]]);
                     else
                     {
                         now--;
                         num[Q[i]]--;
                     }
                  }
                  l=b;
                  }
                }
                printf("%d
    ",now);
             }
        }
        return 0;
    }
  • 相关阅读:
    centos7 下安装MongoDB
    centos7 学习笔记
    MongoDB相关资料收集
    centos 下安装.net core
    sql server 2008 r2 中的oracle发布使用笔记
    sql server 与oracle数据互导的一种思路--sql server链接服务器
    Visual Studio 2015正式版/产品密钥 Win10正式版官方原版ISO镜像下载大全&安装激活教程
    Modbus库开发笔记:Modbus ASCII Slave开发
    PID控制器开发笔记之十一:专家PID控制器的实现
    μCUnit,微控制器的单元测试框架
  • 原文地址:https://www.cnblogs.com/a249189046/p/8094348.html
Copyright © 2011-2022 走看看