记录编号 252141 评测结果 AAAAAAAAAA
题目名称 扑克游戏 最终得分 100
用户昵称 GravatarSatoshi 是否通过 通过
代码语言 C++ 运行时间 0.020 s
提交时间 2016-04-19 16:17:57 内存使用 0.30 MiB
显示代码纯文本
#include <fstream>
#include <algorithm>
#include <queue>
#define N 15010
using namespace std;
typedef long long ll;
priority_queue<ll,vector<ll>,greater<ll> > Q;
int n;
ifstream in("poker.in");
ofstream out("poker.out");
void read()
{
	int i,x;
	in>>n;
	for(i=1;i<=n;i++)in>>x,Q.push(x);
}
void work()
{
	int i;
	ll x,y;
	ll ans=0;
	while(Q.size()>1)
	{
		x=Q.top();Q.pop();
		y=Q.top();Q.pop();
		ans+=(x+y);
		Q.push(x+y);
	}
	out<<ans<<endl;
}
int main()
{
	read();
	work();
	return 0;
}