903C. Boxes Packing#俄罗斯套娃问题(map使用)

Posted hello_OK

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了903C. Boxes Packing#俄罗斯套娃问题(map使用)相关的知识,希望对你有一定的参考价值。

题目出处:http://codeforces.com/problemset/problem/903/C

题目大意:求这组数据中数据出现的最大重复次数

#include<iostream>
#include<map>
using namespace std;
int main(){
    int n;    cin>>n;
    int x,ans=0;
    map<int,int> t;
    for(int i=0;i<n;i++){
        cin>>x;    t[x]++;
        ans = ans>t[x]?ans:t[x];
    }
    cout<<ans;
    return 0;
}

解题思路也是简单,但是测试数据过大情况下,普通方式无法解决,这里应用了map

详细对于#include<map>的了解百度都有

以上是关于903C. Boxes Packing#俄罗斯套娃问题(map使用)的主要内容,如果未能解决你的问题,请参考以下文章

CF1066D Boxes Packing

CF1066D Boxes Packing(二分答案)

俄罗斯套娃的选购秘籍

套娃是俄罗斯的一种民间工艺品,大套娃里面有小套娃,

俄罗斯套娃是啥梗?

俄罗斯套娃信封问题