HDU1004

Posted benzikun

tags:

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

#include <bits/stdc++.h>
using namespace std;
int main()
{
    map<string,int>::iterator it;
    map<string,int> p;
    string s,ans;
    int n;
    while(cin>>n,n)
    {
        p.clear();//否则上一次的仍会被记录 
        for(int i=1;i<=n;i++)
        {
            cin>>s;
            p[s]++;
        }
        int maxn=0;
        for(it=p.begin();it!=p.end();it++)
        {
            if(it->second>maxn)
            {
                maxn=it->second;
                ans=it->first;
            }
        }
        cout<<ans<<endl;
    }
    return 0;
}

受UVa540的影响,刚刚学了map,UVa540中用map<int,int>写了一个数组,于是就想着用map<string,int>写一个记录string类型的数组,第一次没有清空map,长了教训

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

hdu1004

HDU 1004(map的使用)

[多校2015.02.1004 dp] hdu 5303 Delicious Apples

HDU 1004 Let the Balloon Rise

HDU1004:Let the Balloon Rise

hdu 1004