zoukankan      html  css  js  c++  java
  • Codeforces Round #Pi (Div. 2)——set——Berland National Library

    Berland National Library has recently been built in the capital of Berland. In addition, in the library you can take any of the collected works of Berland leaders, the library has a reading room.

    Today was the pilot launch of an automated reading room visitors' accounting system! The scanner of the system is installed at the entrance to the reading room. It records the events of the form "reader entered room", "reader left room". Every reader is assigned aregistration number during the registration procedure at the library — it's a unique integer from 1 to 106. Thus, the system logs events of two forms:

    • "ri" — the reader with registration number ri entered the room;
    • "ri" — the reader with registration number ri left the room.

    The first launch of the system was a success, it functioned for some period of time, and, at the time of its launch and at the time of its shutdown, the reading room may already have visitors.

    Significant funds of the budget of Berland have been spent on the design and installation of the system. Therefore, some of the citizens of the capital now demand to explain the need for this system and the benefits that its implementation will bring. Now, the developers of the system need to urgently come up with reasons for its existence.

    Help the system developers to find the minimum possible capacity of the reading room (in visitors) using the log of the system available to you.

    Input

    The first line contains a positive integer n (1 ≤ n ≤ 100) — the number of records in the system log. Next follow n events from the system journal in the order in which the were made. Each event was written on a single line and looks as "ri" or "ri", where ri is an integer from 1 to 106, the registration number of the visitor (that is, distinct visitors always have distinct registration numbers).

    It is guaranteed that the log is not contradictory, that is, for every visitor the types of any of his two consecutive events are distinct. Before starting the system, and after stopping the room may possibly contain visitors.

    Output

    Print a single integer — the minimum possible capacity of the reading room.

    Sample test(s)
    input
    6
    + 12001
    - 12001
    - 1
    - 1200
    + 1
    + 7
    output
    3
    input
    2
    - 1
    - 2
    output
    2
    input
    2
    + 1
    - 1
    output
    1
    Note

    In the first sample test, the system log will ensure that at some point in the reading room were visitors with registration numbers 1, 1200and 12001. More people were not in the room at the same time based on the log. Therefore, the answer to the test is 3.

    /************************************************
    Author        :powatr
    Created Time  :2015-8-6 20:59:47
    File Name     :b.cpp
    ************************************************/
    
    #include <cstdio>
    #include <algorithm>
    #include <iostream>
    #include <sstream>
    #include <cstring>
    #include <cmath>
    #include <string>
    #include <vector>
    #include <queue>
    #include <deque>
    #include <stack>
    #include <list>
    #include <map>
    #include <set>
    #include <bitset>
    #include <cstdlib>
    #include <ctime>
    using namespace std;
    
    #define lson l, mid, rt << 1
    #define rson mid + 1, r, rt << 1 | 1
    typedef long long ll;
    const int MAX = 110;
    const int INF = 0x3f3f3f3f;
    const int MOD = 1e9 + 7;
    
    struct edge{
        char ch;
        int num;
    }a[MAX];
    int vis[1000100];
    set<int> s;
    int n;
    int main(){
        scanf("%d", &n);
        getchar();
        for(int i = 1; i <= n; i++){
            scanf("%c%d", &a[i].ch, &a[i].num);
            getchar();
        }
        for(int i = 1; i <= n; i++){
            if(a[i].ch == '-' && vis[a[i].num] == 0){
                vis[a[i].num] = 1;
                s.insert(a[i].num);
            }
            else if(a[i].ch == '+'){
                vis[a[i].num] = 1;
            }
        }
        int num = s.size();
        for(int i = 1; i <= n; i++){
            if(a[i].ch == '+') s.insert(a[i].num);
            else {
                s.erase(a[i].num);
            }
            int temp = s.size();
        num = max(num , temp);
        }
        printf("%d
    ", num);
        return 0;
    }
    

      

  • 相关阅读:
    fastreport 中文汉字换行
    Delphi调用自身onchange事件,如提示缺少声明object时,不能调用,用此方法!
    delphi 截取某个字符之前的字段,,如 1234567-9,要分别得到
    delphi 四舍五入取整函数
    SQLServer2008不允许保存更改错误解决办法_不允许保存更改、不允许修改表解决_百度经验
    关于APP的架构实现!微博和知乎中的 feed 流是如何实现的?
    win2003没有OLE DB Provider for SQLServer驱动,可安装sqlserver2000或者安装MDAC2.6,适用于winxp、win2003
    SQLServer2000安装失败,[ODBC 驱动程序管理器]未发现数据源,详细信息请查看日志文件 sql2000 [Microsoft][ODBC 驱动程序管理器] 未发现数据源,参见sqlstp.org,直接退出
    sql server2008R2 密钥
    CentOS7安装memcached
  • 原文地址:https://www.cnblogs.com/zero-begin/p/4709180.html
Copyright © 2011-2022 走看看