解题思路:
注意事项:
参考代码:
#include<queue> #include<cstdio> #include<iostream> #include<algorithm> using namespace std; int main(void) { priority_queue<int,vector<int>,greater<int> >q; int n,data; cin >> n; for(int i=1;i<=n;i++) { cin>>data; q.push(data); } int ans = 0; while(q.size()>1) { int a = q.top(); q.pop(); int b = q.top(); q.pop(); ans += a+b; q.push(a+b); } printf("%d",ans); return 0; }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:543 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:485 |
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:637 |
1642题解浏览:784 |
A+B for Input-Output Practice (C语言代码)浏览:505 |
1051(奇了怪了)浏览:747 |
C语言程序设计教程(第三版)课后习题11.8 (C语言代码)浏览:756 |
C二级辅导-计负均正 (C语言代码)浏览:523 |
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:726 |
大神老白 (C语言代码)浏览:637 |