美文网首页
Hdu1800-Flying to the Mars(stl m

Hdu1800-Flying to the Mars(stl m

作者: 坠木 | 来源:发表于2019-01-14 19:41 被阅读0次

    链接如下:

    Problem - 1800

    试一下map函数.


    这篇文章的生词有

    empire 帝国

    nonnegative integer 非负整数

    eligible 合适的,有资格的


    #include<stdio.h>

    #include<map>

    using namespace std;

    int main()

    {

      int i,n,max;

      map<int,int>mp;

      while(scanf("%d",&n)!=EOF){

    mp.clear();

    while(n--){

    scanf("%d",&i);

    mp[i]++;

    }

    map<int,int>::iterator it;

    max=0;

    for(it=mp.begin();it!=mp.end();it++)

    if(max<it->second) max=it->second;

    printf("%d\n",max);

    }

    return 0;

    }

    相关文章

      网友评论

          本文标题:Hdu1800-Flying to the Mars(stl m

          本文链接:https://www.haomeiwen.com/subject/xggjdqtx.html