无名选手


私信TA

用户名:qwer123456

访问量:11062

签 名:

qwer123456

等  级
排  名 858
经  验 3603
参赛次数 10
文章发表 25
年  龄 0
在职情况 学生
学  校 某知名大专
专  业

  自我简介:

解题思路:不会排序的我只能有c++的函数库开挂

注意事项:

参考代码:#include<iostream>
#include<queue>
#include<algorithm>
using namespace std;
int main()
{
 ios::sync_with_stdio;
 int n,sum=0;
 cin>>n;
 priority_queue<int,vector<int>,greater<int> >q;
 for(int i=1;i<=n;i++)  //优先队列
 {
  int a;
  cin>>a;
  q.push(a);
 }
 while(q.size()!=1)
 {
  int a=q.top();q.pop();
  int b=q.top();q.pop();
  q.push(a+b);
  sum=sum+a+b;
 }
 cout<<sum;
 return 0;
}

 

0.0分

0 人评分

  评论区

  • «
  • »