Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99549 | 陈志轩 | 紧急集合 | C++ | 通过 | 100 | 2 MS | 376 KB | 459 | 2023-08-23 10:02:44 |
#include<bits/stdc++.h> using namespace std; priority_queue <int,vector <int>,greater <int> > p; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n,sum = 0; cin>>n; for (int i = 1;i <= n;i++){ int a; cin>>a; p.push(a); } if (n == 1){ cout<<p.top(); return 0; } while (p.size() > 1){ int x = p.top(); p.pop(); int y = p.top(); p.pop(); sum += (x + y); p.push(x + y); } cout<<sum; return 0; }