zoukankan      html  css  js  c++  java
  • CodeForces 705C Thor (模拟+STL)

    题意:给定三个操作,1,是x应用产生一个通知,2,是把所有x的通知读完,3,是把前x个通知读完,问你每次操作后未读的通知。

    析:这个题数据有点大,但可以用STL中的队列和set来模拟这个过程用q来标记是哪个应用产生的,用set来记录是第几个通知.

    代码如下:

    #pragma comment(linker, "/STACK:1024000000,1024000000")
    #include <cstdio>
    #include <string>
    #include <cstdlib>
    #include <cmath>
    #include <iostream>
    #include <cstring>
    #include <set>
    #include <queue>
    #include <algorithm>
    #include <vector>
    #include <map>
    #include <cctype>
    using namespace std ;
    
    typedef long long LL;
    typedef pair<int, int> P;
    const int INF = 0x3f3f3f3f;
    const double inf = 0x3f3f3f3f3f3f;
    const double PI = acos(-1.0);
    const double eps = 1e-8;
    const int maxn = 3e5 + 5;
    const int mod = 1e9 + 7;
    const int dr[] = {0, 0, -1, 1};
    const int dc[] = {-1, 1, 0, 0};
    int n, m;
    inline bool is_in(int r, int c){
        return r >= 0 && r < n && c >= 0 && c < m;
    }
    queue<int> q[maxn];
    set<int> sets;
    set<int> :: iterator it;
    
    int main(){
        scanf("%d %d", &n, &m);
        int ans = 0, cnt = 0, x, y;
        for(int i = 0; i < m; ++i){
            scanf("%d %d", &x, &y);
            if(1 == x){
                q[y].push(cnt);
                sets.insert(cnt++);
                ++ans;
            }
            else if(2 == x){
                while(!q[y].empty()){
                    int u = q[y].front();  q[y].pop();
                    if(sets.count(u)){
                        --ans;
                        sets.erase(u);
                    }
                }
            }
            else if(3 == x){
                for(it = sets.begin(); it != sets.end(); ){
                    if(*it < y){
                        sets.erase(it++);
                        --ans;
                    }
                    else break;
                }
            }
            printf("%d
    ", ans);
        }
        return 0;
    }
    
  • 相关阅读:
    文件上传---普通文件fileupload.jar和url文件httpUrlConnection
    HttpClient学习整理
    编写更少量的代码:使用apache commons工具类库
    多线程进阶
    多线程下HashMap的死循环问题
    线程本地变量ThreadLocal源码解读
    Eclipse工作常见问题总结
    Java集合---ConcurrentHashMap原理分析
    Java集合---Arrays类源码解析
    Java集合---LinkedList源码解析
  • 原文地址:https://www.cnblogs.com/dwtfukgv/p/5748336.html
Copyright © 2011-2022 走看看