L1-079 天梯赛的善良 (20 分)-PAT 团体程序设计天梯赛 GPLT

解题思路:运用map的自动排序功能很容易找到最小的数以及最小数出现的次数,再设置变量储存最大数即可.

#include
using namespace std;
int main(){
    mapmp;
    int n,max=0;
    cin>>n;
    for(int i=1;i<=n;i++){
        int index;
        cin>>index;
        if(index>max)
           max=index;
        mp[index]++;
    }
    auto it=mp.begin();
    cout<first<<" "<second<

运行结果:

L1-079 天梯赛的善良 (20 分)-PAT 团体程序设计天梯赛 GPLT_第1张图片

 

你可能感兴趣的:(团队程序设计天梯赛,算法,c++,数据结构)