B. Berland National Library
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

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.

#include<stdio.h>
#include<string.h> const int N = 1000005;
bool vist[N];
int main()
{
int n,ans;
char ch[5];
while(scanf("%d",&n)>0)
{
memset(vist,0,sizeof(vist));
int maxcap=0,num=0;
while(n--)
{
scanf("%s%d",ch,&ans);
if(ch[0]=='-'){
if(vist[ans])
vist[ans]=0,num--;
else
maxcap++;
}
else{
if(num==maxcap)
maxcap++;
if(vist[ans]==0)
num++;
vist[ans]=1; }
}
printf("%d\n",maxcap);
}
}

最新文章

  1. jvm的垃圾回收原理
  2. hihoCoder#1014
  3. 重写ViewPager方法,防止滑动广告尾页的时候,Fragment也改变! (如果广告设置为轮播的话,不需要重写ViewPager)
  4. ios推送:本地通知UILocalNotification
  5. 状态机学习(三)解析JSON
  6. VS2010中使用GDAL(一)
  7. runc create container 流程分析
  8. MVC4发布到IIS7报404错误
  9. GitHub Windows客户端部署
  10. Unity3d shader之SWAP Force Depth-of-Field Shader
  11. 关于scrollTop
  12. ViewPager滑动标签-PagerSlidingTabStrip的使用
  13. Python可视化学习(2):Matplotlib快速绘图基础
  14. Winform DataGridView修改数据源界面不刷新问题
  15. Java多线程打辅助的三个小伙子
  16. Easyui和IE浏览器的兼容问题
  17. bzoj4802 欧拉函数(附Millar-Rabin和Pollard-Rho讲解)
  18. [CodeForces - 276A] Lunch Rush
  19. Hadoop学习笔记(1):WordCount程序的实现与总结
  20. 【BZOJ】2434: [Noi2011]阿狸的打字机 AC自动机+树状数组+DFS序

热门文章

  1. 向USB设备发送SCSI命令
  2. POJ 3041(最小点覆盖)
  3. 进程内COM与进程外COM
  4. merge into优化sql(转)
  5. ios的一些知识点
  6. 1. python 字符串简介与常用函数
  7. Sublime Text2安装emmet(原名Zen Coding)总结
  8. iOS宏(自己使用,持续更新)
  9. glassfish3 读不到web程序的jar包
  10. apache基金会项目及甲骨文项目汇总