A10065 | Berland National Library
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 a registration number during the registration procedure at the library — it's a unique integer from $1$ to $10^{6}$ . Thus, the system logs events of two forms:
- "+ $r_{i}$ " — the reader with registration number $r_{i}$ entered the room;
- "- $r_{i}$ " — the reader with registration number $r_{i}$ 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.
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 a registration number during the registration procedure at the library — it's a unique integer from $1$ to $10^{6}$ . Thus, the system logs events of two forms:
- "+ $r_{i}$ " — the reader with registration number $r_{i}$ entered the room;
- "- $r_{i}$ " — the reader with registration number $r_{i}$ 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.
输入格式
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 "+ $r_{i}$ " or "- $r_{i}$ ", where $r_{i}$ is an integer from $1$ to $10^{6}$ , 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.
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.
输出格式
Print a single integer — the minimum possible capacity of the reading room.
输入输出样例
输入 #1
6 + 12001 - 12001 - 1 - 1200 + 1 + 7
输出 #1
3
输入 #2
2 - 1 - 2
输出 #2
2
输入 #3
2 + 1 - 1
输出 #3
1
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted