标签:
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:
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 "+ ri" or "- ri", where ri is an integer from1 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.
Print a single integer — the minimum possible capacity of the reading room.
6 + 12001 - 12001 - 1 - 1200 + 1 + 7
3
2 - 1 - 2
2
2 + 1 - 1
1
代码:
#include<iostream> #include<set> #include<cstdio> using namespace std; int main() { set<int> s; int num=0; char c;int k,n; cin>>n; for(int i=0;i<n;i++) { cin>>c>>k; if(c=='+') { s.insert(k); int l=s.size(); num=max(l,num); } else { if(s.find(k)==s.end()) num++; else s.erase(k); int l=s.size(); num=max(l,num); } } cout<<num<<endl; return 0; }
版权声明:本文为博主原创文章,未经博主允许不得转载。
CodeForces 567B Berland National Library(模拟)(简单)
标签:
原文地址:http://blog.csdn.net/kaisa158/article/details/47338319