PAT 乙级 1032 挖掘机技术哪家强

这篇博客展示了如何使用C++编程找到map中value最大的元素。通过创建一个PAIR类型的vector,对map的元素进行排序,最终找出value最大的元素及其对应的key。代码中包含了两种排序方式,一种是直接比较value,另一种是使用自定义比较函数。虽然可以直接遍历map找到最大值,但这里选择了排序的方法,其时间复杂度为O(nlogn)。
摘要由CSDN通过智能技术生成

PAT 乙级 1032 挖掘机技术哪家强

// 1032 挖掘机技术哪家强.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//

#include <iostream>
#include <map>
#include <vector>
#include <algorithm>

using namespace std;

typedef pair<int, int> PAIR;

bool cmp_byvalue(PAIR& x, PAIR& y) {
    return x.second > y.second;
}
struct cmp {
    bool operator()(const PAIR& x, const PAIR& y) {
        return x.second > y.second;
    }
};

int main()
{
    int n;
    int a, b;
    cin >> n;
    map<int, int> m;
    for (int i = 0; i < n; i++) {
        cin >> a >> b;
        m[a] += b;
    }
    vector<PAIR> res(m.begin(), m.end());
    sort(res.begin(), res.end(), cmp_byvalue);
    sort(res.begin(), res.end(), cmp());
    cout << res[0].first << " " << res[0].second;
    return 0;
}

两种对map按value遍历的方法

typedef pair<int, int> PAIR;

bool cmp_byvalue(PAIR& x, PAIR& y) {
    return x.second > y.second;
}
struct cmp {
    bool operator()(const PAIR& x, const PAIR& y) {
        return x.second > y.second;
    }
};

vector<PAIR> res(m.begin(), m.end());
sort(res.begin(), res.end(), cmp_byvalue);
sort(res.begin(), res.end(), cmp());

想直接访问map的最后一个元素可以用iterator指向map.end(),然后iterator–,但是只能得到map按key排序的最后一位

只是要得到最大值的话,完全可以将得到的map遍历一遍,把最大值和所对应key保存下来输出即可。复杂度为O(N)
我用了排序,复杂度至少为O(nlogn)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值