Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
167989 | C班詹皓杰 | 紧急集合 | C++ | 通过 | 100 | 4 MS | 360 KB | 348 | 2024-08-19 21:40:46 |
#include<iostream> #include<queue> using namespace std; priority_queue<int,vector<int>,greater<int>> q; int main(){ int n,s=0,x,y; cin>>n; for(int i = 1; i <= n; i++){ cin>>x; q.push(x); } while(q.size() > 1){ x = q.top(); q.pop(); y = q.top(); q.pop(); s += x+y; q.push(x+y); } cout<<s; return 0; }