P1090 合并果子


题目传送门

总结:
1、哈夫曼编码模板题

2、使用了STL中的优先队列
小根堆

priority_queue, greater > q;

默认大根堆

priority_queue> q;

可多知识可以参考:

#include 

using namespace std;
int n, x, ans;
priority_queue, greater > q;

int main() {
    cin >> n;
    for (int i = 1; i <= n; i++) cin >> x, q.push(x);
    while (q.size() >= 2) {
        int a = q.top();
        q.pop();
        int b = q.top();
        q.pop();
        ans += a + b;
        q.push(a + b);
    }
    cout << ans << endl;
    return 0;
}