【模拟】Codeforces 704A & 705C Thor

题目链接:

  http://codeforces.com/problemset/problem/704/A

  http://codeforces.com/problemset/problem/705/C

题目大意:

  雷神有N个应用,接下来Q个操作,操作分三种

  1.应用X增加一个未读消息。

  2.把应用X的未读消息全都读了。(可能重复读了已读的)

  3.把前X个1操作的未读消息全都读了。(可能重复读了已读的)

  求每一个操作后当前的未读消息总数。

题目思路:

  【模拟】

  一开始看错题目,以为操作二是把后X个消息读了就以为是队列。。WA了两发纪念一下我的英语水平。

  直接暴力模拟就行,但是一开始想错了想往后统计答案,发现肯定会T。

  其实这题只要换一个方向,往前统计被读掉的消息对上一个答案的影响。

  操作1就把应用X的最后一个消息出现位置修改为当前操作,链表接上上一个。

  操作2就从X的最后一个消息开始往前把所有的未读都标记为已读,答案减去未读数。

  操作3就把前X个消息扫一遍统计未读数,改标记。(可以扫到上次操作3的位置)

  这样就不会T了。

 1 //
 2 //by coolxxx
 3 //#include<bits/stdc++.h>
 4 #include<iostream>
 5 #include<algorithm>
 6 #include<string>
 7 #include<iomanip>
 8 #include<map>
 9 #include<memory.h>
10 #include<time.h>
11 #include<stdio.h>
12 #include<stdlib.h>
13 #include<string.h>
14 //#include<stdbool.h>
15 #include<math.h>
16 #define min(a,b) ((a)<(b)?(a):(b))
17 #define max(a,b) ((a)>(b)?(a):(b))
18 #define abs(a) ((a)>0?(a):(-(a)))
19 #define lowbit(a) (a&(-a))
20 #define sqr(a) ((a)*(a))
21 #define swap(a,b) ((a)^=(b),(b)^=(a),(a)^=(b))
22 #define mem(a,b) memset(a,b,sizeof(a))
23 #define eps (1e-8)
24 #define J 10
25 #define mod 1000000007
26 #define MAX 0x7f7f7f7f
27 #define PI 3.14159265358979323
28 #define N 300004
29 using namespace std;
30 typedef long long LL;
31 int cas,cass;
32 int n,m,lll,ans;
33 int pre[N],last[N];
34 bool mark[N];
35 int main()
36 {
37     #ifndef ONLINE_JUDGE
38 //    freopen("1.txt","r",stdin);
39 //    freopen("2.txt","w",stdout);
40     #endif
41     int i,j,k;
42     int head,x,y;
43 //    for(scanf("%d",&cas);cas;cas--)
44 //    for(scanf("%d",&cas),cass=1;cass<=cas;cass++)
45 //    while(~scanf("%s",s+1))
46     while(~scanf("%d",&n))
47     {
48         //lll=0;mem(last,0);ans=0;
49         head=1;
50         scanf("%d",&m);
51         for(i=1;i<=m;i++)
52         {
53             scanf("%d%d",&x,&y);
54             if(x==1)
55             {
56                 pre[++lll]=last[y];
57                 last[y]=lll;
58                 ans++;
59             }
60             else if(x==2)
61             {
62                 for(j=last[y];j;j=pre[j])
63                     if(!mark[j])
64                         ans--,mark[j]=1;
65                 last[y]=0;
66             }
67             else if(x==3)
68             {
69                 for(j=head;j<=y;j++)
70                 {
71                     if(!mark[j])
72                         mark[j]=1,ans--;
73                 }
74                 head=max(head,j);
75             }
76             printf("%d\n",ans);
77         }
78     }
79     return 0;
80 }
81 /*
82 //
83
84 //
85 */

时间: 2024-10-06 01:10:08

【模拟】Codeforces 704A & 705C Thor的相关文章

【打CF,学算法——三星级】Codeforces 704A Thor (模拟)

[CF简介] 题目链接:CF 704A 题面: A. Thor time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Thor is getting used to the Earth. As a gift Loki gave him a smartphone. There are n applications on this ph

Codeforces 704A Thor 队列模拟

题目大意:托尔有一部手机可执行三种操作 1.x APP产生一个新消息 2.读取x App已产生的所有消息 3.读取前t个产生的消息 问每次操作后未读取的消息的数量 题目思路: 队列模拟,坑点在于竟然卡内存……详细看代码. #include<iostream> #include<algorithm> #include<cstring> #include<vector> #include<stdio.h> #include<stdlib.h&g

codeforces 704A (队列模拟) Thor

题目:这里 题意:n个app,q个操作,当操作数type为1的时候表示y这个app推送了你一条消息,当操作数type为2的时候表示将y这个app已推送的所有消息都读完,当操作数为3的时候 表示将已经推送的前(按推送的时间顺序)y条消息再读一遍(不管这前y条消息中有没有读过的,都再读一遍),问每次操作的时候的未读的消息数是多少? 用队列来模拟就好,记得每次要输出的是所有app的没有读过的消息的总数就行,不要想的太细,把读过的标记一下就行,总是觉得这个会超时,但是一想这才是2的第三题,1 的第一题,

CodeForces 705C Thor

开30W个vector将数字归类,每一类数字开一个指针P,记录已经阅读到哪一个了,还可以开一个优先队列维护这些指针P. #pragma comment(linker, "/STACK:1024000000,1024000000") #include<cstdio> #include<cstring> #include<cmath> #include<algorithm> #include<vector> #include<

模拟 Codeforces Round #297 (Div. 2) A. Vitaliy and Pie

题目传送门 1 /* 2 模拟:这就是一道模拟水题,看到标签是贪心,还以为错了呢 3 题目倒是很长:) 4 */ 5 #include <cstdio> 6 #include <algorithm> 7 #include <iostream> 8 #include <algorithm> 9 #include <cstring> 10 using namespace std; 11 12 const int MAXN = 2e5 + 10; 13

queue+模拟 Codeforces Round #304 (Div. 2) C. Soldier and Cards

题目传送门 1 /* 2 题意:两堆牌,每次拿出上面的牌做比较,大的一方收走两张牌,直到一方没有牌 3 queue容器:模拟上述过程,当次数达到最大值时判断为-1 4 */ 5 #include <cstdio> 6 #include <iostream> 7 #include <algorithm> 8 #include <cstring> 9 #include <string> 10 #include <stack> 11 #in

Codeforces #366 Div. 2 C. Thor (模拟

http://codeforces.com/contest/705/problem/C 题目 模拟题 : 设的方法采用一个 r 数组(第几个app已经阅读过的消息的数量),和app数组(第几个app发出的消息的总数),加上一个 q 队列. 思路: 查询==1的时候,入队(记录顺序), sum++ (sum 为全部的剩余 没阅读的数量) 查询==2的时候,针对一个app,sum -(这个app发出的消息的总数 - 这个app已经阅读过的消息的数量),然后用 app数组 更新 r 数组,表示这个ap

codeforces 591B Rebranding (模拟)

Rebranding Problem Description The name of one small but proud corporation consists of n lowercase English letters. The Corporation has decided to try rebranding - an active marketing strategy, that includes a set of measures to change either the bra

Codeforces 747C:Servers(模拟)

http://codeforces.com/problemset/problem/747/C 题意:有n台机器,q个操作.每次操作从ti时间开始,需要ki台机器,花费di的时间.每次选择机器从小到大开始,如果可以完成任务,那么输出id总和,否则输出-1. 思路:简单的模拟,注意如果不能完成任务,那么ser数组是不能更新的. 1 #include <cstdio> 2 #include <algorithm> 3 #include <iostream> 4 #includ