题目链接:堆排序
 
#include <iostream>
using namespace std;
const int N = 100010;
int n, m;
int h[N], Size;
void down(int u)
{
    int t = u;
    if(u * 2 <= Size && h[u * 2] < h[t]) t = u * 2;
    if(u * 2 + 1 <= Size && 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];
    Size = n;
    // 将数组制作成完全二叉树(小根堆)
    for(int i = n / 2; i; i--) down(i);
    
    while(m--)
    {
        printf("%d ", h[1]);
        h[1] = h[Size];
        Size --;
        down(1);
    }
    return 0;
}
                

















