【526. 堆排序(cv)】

【526. 堆排序(cv)】,第1张

更多详细介绍





/*
 * Project: 10_堆
 * File Created:Wednesday, January 13th 2021, 10:03:02 pm
 * Author: Bug-Free
 * Problem:AcWing 838. 堆排序
 */
#include 
#include 

using namespace std;

const int N = 1e6 + 10;

int n, m;
int h[N], cnt;

void down(int u) {
    int t = u;
    if (u * 2 <= cnt && h[u * 2] < h[t]) {
        t = u * 2;
    }
    if (u * 2 + 1 <= cnt && h[u * 2 + 1] < h[t]) {
        t = u * 2 + 1;
    }
    if (u != t) {
        swap(h[u], h[t]);
        down(t);
    }
}

int main() {
    cin >> n >> m;
    for (int i = 1; i <= n; i++) {
        cin >> h[i];
    }
    cnt = n;
    for (int i = n / 2; i; i--) {
        down(i);
    }
    while (m--) {
        cout << h[1] << " ";  //输出堆顶(最小值)
        h[1] = h[cnt--];  //删除堆顶(用最后一个数覆盖第一个数) 并且长度 减1
        down(1);  //让覆盖好的数往下面走
    }
    cout << endl;
    return 0;
}


作者:Bug-Free
链接:https://www.acwing.com/solution/content/29416/
来源:AcWing
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/676177.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-19
下一篇 2022-04-19

发表评论

登录后才能评论

评论列表(0条)

保存