Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
168112 | C班-赵奕博 | 紧急集合 | C++ | 通过 | 100 | 4 MS | 348 KB | 448 | 2024-08-19 22:45:00 |
#include<bits/stdc++.h> using namespace std; int main(){ int n, ans = 0; cin>>n; priority_queue<int, vector<int>, greater<int> > q; for(int i = 1; i <= n; i++){ int x; cin>>x; q.push(x); } while(q.size() > 1){ int x = q.top(); q.pop(); int y = q.top(); q.pop(); ans += x + y; q.push(x + y); } cout<<ans; return 0; }