Berland National Library

 

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.

 
 

解題思路:該題大意是一個圖書館更換了智能系統,爲說服大衆拿出有效證據,即圖書館經智能系統記錄的最小容量。也就是求在某一時間在圖書館中的最大人數,

 

採用模擬算法,模擬記錄過程,定義兩個變量now_num和all_num,使用now_num模擬圖書館中人數的實時變化。主要有三種情況:1.所有進入記錄算一種;2.只出不進;3.有進有出。

 

#include<algorithm>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<cctype>
#include<list>
#include<iostream>
#include<map>
#include<queue>
#include<set>
#include<stack>
#include<vector>

using namespace std;

int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        int all_num = 0;
        int now_num = 0;
        getchar();
        char ch[1000];
        int num[1000];
        for(int i = 0; i < n; i++)
        {
            scanf("%c",&ch[i]);
            getchar();
            scanf("%d",&num[i]);
            getchar();
        }
        int txt = true;
        for(int i = 0; i < n; i++)
        {
            if(ch[i] == '+') {
                    now_num++;
                    all_num = max(now_num,all_num);
            }
            if(ch[i] == '-')
            {
                for(int j = 0; j < i; j++)
                {
                    if(num[j] == num[i])
                    {
                         now_num--;
                         txt = false;
                         break;
                    }
                }
                if(txt) {
                        all_num++;
                }
                txt = true;
             }
        }
        printf("%d\n",all_num);
    }
    return 0;
}

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章