记录编号 580977 评测结果 AAAAAAAAAA
题目名称 [NOIP 2004]合并果子 最终得分 100
用户昵称 Gravatar┭┮﹏┭┮ 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2023-07-28 11:37:44 内存使用 0.00 MiB
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
int n,x,ans;
priority_queue<int,vector<int>,greater<int> >q;
int main(){
    freopen("fruit.in","r",stdin) ;
    freopen("fruit.out","w",stdout);
    scanf("%d",&n) ;
    for(int i = 1;i <= n;i++){
        scanf("%d",&x);q.push(x);
    }
    while(q.size() > 1){
        int a = q.top();q.pop();
        int b = q.top();q.pop();
        ans += a + b;
        q.push(a+b);
    }//优先队列建立小根堆模板 
    printf("%d\n",ans);
    
    return 0;
}