A. Towers1000 / 哈希表
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Towers1000 / 哈希表相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/37/
就是统计一下哪个数字出现的次数最多,再输出哈希表的大小。
#include<bits/stdc++.h>
using namespace std;
const int N=1e4+10;
int a[N],ans;
map<int,int>mp;
int main(void)
{
int n; cin>>n;
for(int i=0;i<n;i++) cin>>a[i],mp[a[i]]++,ans=max(ans,mp[a[i]]);
cout<<ans<<" "<<mp.size()<<endl;
return 0;
}
以上是关于A. Towers1000 / 哈希表的主要内容,如果未能解决你的问题,请参考以下文章