比赛 数据结构应用练习1 评测结果 AAAAAAAAAA
题目名称 合并果子 最终得分 100
用户昵称 ┭┮﹏┭┮ 运行时间 0.079 s
代码语言 C++ 内存使用 3.52 MiB
提交时间 2023-07-28 10:18:19
显示代码纯文本
#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;
}