比赛 数据结构应用练习1 评测结果 AAAAAAAAAA
题目名称 合并果子 最终得分 100
用户昵称 宇战 运行时间 0.087 s
代码语言 C++ 内存使用 9.44 MiB
提交时间 2023-07-28 09:55:26
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,m,s,a[1000000],f[1000000],top;
priority_queue<int,vector<int>,greater<int>>h;
int main(){
    freopen("fruit.in","r",stdin);
    freopen("fruit.out","w",stdout);
    cin>>n;
    for(int i=1;i<=n;i++){
        cin>>a[i];
        h.push(a[i]);
    }
    while(1){
        if(h.size()==1){
            for(int i=1;i<=top;i++){
                s+=f[i];
            }
            cout<<s;
            return 0;
        }
        int x=h.top();
        h.pop();
        int y=h.top();
        h.pop();
        h.push(x+y);
        f[++top]=x+y;
    }
}