记录编号 392456 评测结果 AAAAAAAAAA
题目名称 [NOIP 2004]合并果子 最终得分 100
用户昵称 GravatarHyoi_cerron 是否通过 通过
代码语言 C++ 运行时间 0.035 s
提交时间 2017-04-07 20:38:03 内存使用 0.32 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstdlib>
#include<algorithm>
#include<queue>
using namespace std;
priority_queue<int,vector<int>,greater<int> > q;int n;int temp;int ans=0;
inline void readln(){
	freopen("fruit.in","r",stdin);
	freopen("fruit.out","w",stdout);
	scanf("%d",&n);
	for (int i=1;i<=n;i++){
		scanf("%d",&temp);
		q.push(temp);
	}
}
inline void work(){
	while (q.size()-1){
		int a=q.top();q.pop();
		int b=q.top();q.pop();
		int c=a+b;ans+=c;
		//printf("a=%d b=%d c=%d\n",a,b,c);
		q.push(c);
	}
}
int main(){
	readln();
	work();
	printf("%d",ans);
	fclose(stdin);fclose(stdout);
	return 0;
}