Codeforces Round #147 (Div. 2) A. Free Cash

来源:互联网 发布:科比2010年总决赛数据 编辑:程序博客网 时间:2024/05/17 00:05

点击打开题目链接


A. Free Cash
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Valera runs a 24/7 fast food cafe. He magically learned that next day n people will visit his cafe. For each person we know the arrival time: the i-th person comes exactly at hi hours mi minutes. The cafe spends less than a minute to serve each client, but if a client comes in and sees that there is no free cash, than he doesn't want to wait and leaves the cafe immediately.

Valera is very greedy, so he wants to serve all n customers next day (and get more profit). However, for that he needs to ensure that at each moment of time the number of working cashes is no less than the number of clients in the cafe.

Help Valera count the minimum number of cashes to work at his cafe next day, so that they can serve all visitors.

Input

The first line contains a single integer n (1 ≤ n ≤ 105), that is the number of cafe visitors.

Each of the following n lines has two space-separated integers hi and mi (0 ≤ hi ≤ 23; 0 ≤ mi ≤ 59), representing the time when the i-th person comes into the cafe.

Note that the time is given in the chronological order. All time is given within one 24-hour period.

Output

Print a single integer — the minimum number of cashes, needed to serve all clients next day.

Sample test(s)
input
48 08 108 108 45
output
2
input
30 1210 1122 22
output
1
Note

In the first sample it is not enough one cash to serve all clients, because two visitors will come into cafe in 8:10. Therefore, if there will be one cash in cafe, then one customer will be served by it, and another one will not wait and will go away.

In the second sample all visitors will come in different times, so it will be enough one cash.

题意:求最大重复时间有多少个。

特别特别注意n=1的时候,就是因为这个数据,我的答案卡在57组数据上。

代码:

#include<iostream>#include<cstdio>#include<cstdlib>#include<cstring>#include<algorithm>using namespace std;struct ss{   int h;   int m;}p[100005];bool cmp(ss a,ss b) {     if(a.h==b.h)       return a.m<b.m;     else       return a.h<b.h; }int n,i,j,k; int main() {    cin>>n; for(i=0;i<n;i++)   scanf("%d%d",&p[i].h,&p[i].m);sort(p,p+n,cmp);int ans=1,max=0;for(i=1;i<n;i++) {     if(p[i].h==p[i-1].h&&p[i].m==p[i-1].m)        ans++;     else       ans=1;    if(max<ans)      max=ans; } if(n==1)  {      printf("1\n");  }else  cout<<max<<endl;     return 0; }




0 0
原创粉丝点击