输出前M大的数字(用数组来hash查找)

题目:
输入的数值是[-50000,50000],要求按照从大到小输出前M大的数据,空间可以随意申请,但是需要1S内解决
sort太慢了,需要hash来解决

分析:
 

value数组下标计算方法
-500000-50000 + 50000
-499991

-49999 + 50000

0500000 +50000
5000010000050000 + 50000

intput:
5 3 (数的个数,前M大)
3 -5 92 213 -644
output:
213 92 3

 

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <cmath>
#include <cstdio>
#include <map>
#include <stack>

#define OFFSET 50000

using namespace std;



int main() {

    int a[100001] = {0};
    int n, m;
    cin >> n >> m;
    while(n--) {
        int t;
        cin >> t;
        a[t + OFFSET] = 1;
    }

    int cnt = 0;
    for(int i = 100000; i >= 0; i--) {
        if(a[i] == 1) {
            cout << i - OFFSET << " ";
            cnt ++;
            if(cnt == m) {
                break;
            }
        }
    }



}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值