记录编号 |
128026 |
评测结果 |
AAAAAAAAAAAAAAA |
题目名称 |
[USACO DEC13]名称记录 |
最终得分 |
100 |
用户昵称 |
乌龙猹 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.014 s |
提交时间 |
2014-10-16 19:49:43 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<algorithm>
#include<iostream>
#include<cstdio>
#include<map>
using namespace std;
map<string,int> q;
int n,maxx;
string s[4];
string str;
int main()
{
freopen("records.in","r",stdin);
freopen("records.out","w",stdout);
ios::sync_with_stdio(false);
cin>>n;
for(int i=1;i<=n;i++)
{
cin>>s[1]>>s[2]>>s[3];
sort(s+1,s+4);
str=s[1]+s[2]+s[3];
q[str]++;
if(q[str]>maxx) maxx=q[str];
}
cout<<maxx;
return 0;
}