CSU2179: 找众数

Posted jkzr

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSU2179: 找众数相关的知识,希望对你有一定的参考价值。

Description

由文件给出N个1到30000间无序数正整数,其中1≤N≤10000,同一个正整数可能会出现多次,出现次数最多的整数称为众数。求出它的众数及它出现的次数。

Input

输入文件第一行是正整数的个数N,第二行开始为N个正整数。

Output

输出文件有若干行,每行两个数,第1个是众数,第2个是众数出现的次数。

Sample Input

12
2  4  2  3  2  5  3  7  2  3  4  3

Sample Output

2 4
3 4

题意:很好理解,就是找到出现次数最多的个数和对应的值。桶排一下就行。我这利用map的思想,先把所有出现的值和对应的个数存储起来,然后遍历找到最大的次数,再遍历一下找到其值就可以了。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <string>
#include <algorithm>
#include <map>
using namespace std;
const int maxn=1005;
int n,T;
map<int,int>m;
int main()
{
    while(scanf("%d",&n)!=EOF)
    {
        int x;
        while(n--)
        {
            scanf("%d",&x);
            if(m.count(x)==0)
                m[x]=1;
            else
                m[x]++;
        }
        int ans=0;
        map<int,int>::iterator iter;
        iter=m.begin();
        while(iter!=m.end())
        {
            ans=max(ans,iter->second);
            iter++;
        }
        iter=m.begin();
        while(iter!=m.end())
        {
            if(ans==iter->second)
                printf("%d %d
",iter->first,iter->second);
            iter++;
        }
    }
    return 0;
}


/**********************************************************************
	Problem: 2179
	User: therang
	Language: C++
	Result: AC
	Time:8 ms
	Memory:2424 kb
**********************************************************************/

  





以上是关于CSU2179: 找众数的主要内容,如果未能解决你的问题,请参考以下文章

一种特殊情况找众数的思想

CSU-2221 假装是区间众数(ST表模版题)

luogu P2397 yyy loves Maths VI (mode)

洛谷P2179 [NOI2012]骑行川藏

zzuli 2179 最短路

BZOJ 2179: FFT快速傅立叶