Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
167929 | 刘峻驿 | 紧急集合 | C++ | 通过 | 100 | 4 MS | 356 KB | 373 | 2024-08-19 20:49:14 |
#include <bits/stdc++.h> using namespace std; priority_queue<int,vector<int>,greater<int>>q; int main() { int n,cnt=0; cin>>n; for(int i = 1;i<=n;i++) { int x; cin>>x; q.push(x); } while(q.size()>1) { int zds = q.top();q.pop(); int cds = q.top();q.pop(); int xs=zds+cds; q.push(xs); cnt+=xs; } cout<<cnt<<endl; return 0; }