Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99642 | scl111104 | 紧急集合 | C++ | 通过 | 100 | 3 MS | 392 KB | 394 | 2023-08-23 14:39:42 |
#include <bits/stdc++.h> using namespace std; int a[10005]; priority_queue <int, vector <int>, greater <int> > q; int main (){ int n, sum = 0; cin >> n; for (int i=1; i<=n; i++){ cin >> a[i]; q.push(a[i]); } while (q.size() > 1){ int x = q.top(); q.pop(); int y = q.top(); q.pop(); int z = x + y; sum += z; q.push(z); } cout << sum; return 0; }