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).ios
q events are about to happen (in chronological order). They are of three types:c++
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.app
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.this
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 = 2then it is followed by an integer xi. Otherwise it is followed by an integer ti (1 ≤ typei ≤ 3, 1 ≤ xi ≤ n, 1 ≤ ti ≤ q).spa
Print the number of unread notifications after each event.code
3 4
1 3
1 1
1 2
2 3
1
2
3
2
4 6
1 2
1 4
1 2
3 3
1 3
1 3
1
2
3
0
1
2
In the first sample:blog
In the second sample test:three
题意:n个app q个事件 三种操做 队列
1 x 应用x增长一个未读消息事件
2 x 应用x的消息所有被阅读
3 t 前t个 1操做的事件所有被阅读
q个操做 每次输出当前剩余的未读信息的数量
题解:队列模拟
un[i]表示应用i总的信息数量
com[i]表示应用i的已读的信息数量
1 /****************************** 2 code by drizzle 3 blog: www.cnblogs.com/hsd-/ 4 ^ ^ ^ ^ 5 O O 6 ******************************/ 7 //#include<bits/stdc++.h> 8 #include<iostream> 9 #include<cstring> 10 #include<cstdio> 11 #include<map> 12 #include<algorithm> 13 #include<queue> 14 using namespace std; 15 #define ll __int64 16 #define esp 1e-10 17 const int N=3e5+10,M=1e6+10,mod=1e9+7,inf=1e9+10; 18 int a[N]; 19 int com[N]; 20 int un[N]; 21 int th[N]; 22 queue<int>q; 23 int main() 24 { 25 int x,y,z,i,t; 26 scanf("%d%d",&x,&y); 27 int ans=0,maxx=0; 28 for(i=0;i<y;i++) 29 { 30 int u; 31 scanf("%d%d",&u,&a[i]); 32 if(u==1) 33 un[a[i]]++,ans++,q.push(a[i]); 34 else if(u==2) 35 { 36 ans-=un[a[i]]-com[a[i]]; 37 com[a[i]]=un[a[i]]; 38 } 39 else 40 { 41 if(a[i]>=maxx)//只须要出队入队一次 42 { 43 int T=a[i]-maxx; 44 while(!q.empty()&&T>0) 45 { 46 T--; 47 int v=q.front(); 48 q.pop(); 49 th[v]++; 50 if(th[v]>com[v])//执行3操做的阅读量大于已经阅读的量 51 { 52 ans-=th[v]-com[v]; 53 com[v]=th[v]; 54 } 55 } 56 maxx=a[i]; 57 } 58 } 59 printf("%d\n",ans); 60 } 61 return 0; 62 }