记录编号 393613 评测结果 AAAAAAAAAA
题目名称 [NOIP 2004]合并果子 最终得分 100
用户昵称 Gravatar东林桂香 是否通过 通过
代码语言 C++ 运行时间 0.041 s
提交时间 2017-04-11 20:03:53 内存使用 0.31 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<queue>
using namespace std;
int n;
int ans;
priority_queue<int>p;
int main()
{
	freopen("fruit.in","r",stdin);
	freopen("fruit.out","w",stdout);
	scanf("%d",&n);
	for(int i=1;i<=n;i++)
	{
		int x;
		scanf("%d",&x);
		p.push(-x);
	}
	while(p.size()!=1)
	{
		int a=p.top();
		p.pop();
		int b=p.top();
		p.pop();
		ans-=a;
		ans-=b;
		p.push(a+b);
	}
	printf("%d",ans);
	fclose(stdin);
	fclose(stdout);
	return 0;
}