Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
168080 B班 马淑龄 紧急集合 C++ 通过 100 4 MS 352 KB 316 2024-08-19 22:17:29

Tests(10/10):


#include<bits/stdc++.h> using namespace std; int n,x,ans; priority_queue<int,vector<int>,greater<int> >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; }


测评信息: