https://www.luogu.com.cn/problem/P1090
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <sstream>
#include <algorithm>
#include <cstring>
#include <vector>
#include <queue>
using namespace std;
//template<typename DataType>
//DataType qmi(DataType m, int k)
//{
// DataType res = 1, t = m;
// while (k)
// {
// if (k&1) res = res * t;
// t = t * t;
// k >>= 1;
// }
// return res;
//}
int qmi(int m, int k)
{
int res = 1, t = m;
while (k)
{
if (k&1) res = res * t;
t = t * t;
k >>= 1;
}
return res;
}
int read(){
int x = 0,f = 1;
char c = getchar();
while (c<'0'||c>'9') {
if (c=='-') {
f = -1;
}
c = getchar();
}
while (c>='0'&&c<='9') {
x = x*10+c-'0';
c = getchar();
}
return x*f;
}
#define fi(a,b) for(int i = a; i <= b; i++)
#define fj(a,b) for(int j = a; j >= b; j--)
struct priceAndCnt{
int price,cnt;
};
void quickSort(priceAndCnt *a,int left,int right){
int i,j;
priceAndCnt temp,t;
temp = a[(left+right)/2];//基准值
i = left;
j = right;
while(i<=j){
while (a[j].price > temp.price) {
j--;
}
while (a[i].price < temp.price) {
i++;
}
if (i<=j) {
t = a[i];
a[i] = a[j];
a[j] = t;
//继续下一步
i++;
j--;
}
}
if(left<j)quickSort(a,left, j);//继续分治
if(i<right)quickSort(a,i, right);//继续分治
}
int n,x,ans;
priority_queue<int,vector<int>,greater<int> >q;//优先队列从小到大使用
int main(){
cin>>n;
fi(1,n){
q.push(read());
}
while(q.size()>=2){
int a=q.top();
q.pop();
int b=q.top();
q.pop();
ans += a+b;
q.push(a+b);
}
cout << ans <<endl;
return 0;
}
/*
3
1 2 9
4
9 4 5 1
============
15
*/
网友评论