• CodeForces 567B Berland National Library


    题目链接:http://codeforces.com/problemset/problem/567/B

    Description

    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 Input
    Input
    6
    + 12001
    - 12001
    - 1
    - 1200
    + 1
    + 7
    Output
    3
    
    Input
    2
    - 1
    - 2
    Output
    2
    
    Input
    2
    + 1
    - 1
    Output
    1
    
    Hint
    In the first sample test, the system log will ensure that at some point in the reading room were visitors with registration numbers 1, 1200 and 12001. More people were not in the room at the same time based on the log. Therefore, the answer to the test is 3.
    这道题相当于一辆公交车,+n,代表上去一个标号为n的人,-n相当于下去一个标号为n的人,问你公交车上需要有几个座位。
    模拟题。
     1 #include<iostream>
     2 #include<cstdio>
     3 #include<cstring>
     4 #include<algorithm>
     5 #include<stack>
     6 #include<math.h>
     7 #include<queue>
     8 #include<map>
     9 using namespace std;
    10 #define INF 0x3f3f3f3f
    11 #define N 12342000
    12 int a[N];
    13 int main()
    14 {
    15     int n,i,x;
    16 
    17     char s[11];
    18     while(scanf("%d",&n)!=EOF)
    19     {
    20         memset(a,0,sizeof(a));
    21         int ans = 0;
    22         int maxx = 0;
    23         for(i = 0;i<n;i++)
    24         {
    25             scanf("%s%d",s,&x);
    26             if(s[0]=='+')
    27             {
    28                 a[x] = 1;
    29                 ans++;
    30                 maxx = max(ans,maxx);
    31             }
    32             else
    33             {
    34                 if(a[x])
    35                     ans--;
    36                 else
    37                     maxx++;
    38             }
    39         }
    40         printf("%d
    ",maxx);
    41     }
    42     return 0;
    43 }
    View Code
  • 相关阅读:
    Iis发布网站
    call和apply的用法和区别
    用脚手架搭建vue项目
    记录一键shell脚本清理MySQL碎片文件的脚本
    Tiny File Manager – 轻便PHP文件管理工具 WEB文件可视化管理文件
    Pure Highlightjs – WordPress站长必装轻便代码高亮插件
    6个实用方法有效确保WordPress网站数据安全
    WPOSS – WordPress阿里云对象存储OSS插件 网站图片分离加速
    WordPress安装WPCOS插件分离图片至腾讯云对象存储加速网站
    Autoptimize – WordPress压缩代码加速网站访问插件设置方法
  • 原文地址:https://www.cnblogs.com/biu-biu-biu-/p/5798467.html
Copyright © 2020-2023  润新知