记录编号 |
369154 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2004]合并果子 |
最终得分 |
100 |
用户昵称 |
muyi |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.019 s |
提交时间 |
2017-02-08 11:14:00 |
内存使用 |
0.43 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int heap_size,n;
int heap[30001];
void put(int d)
{
heap[++heap_size]=d;
push_heap(heap+1,heap+heap_size+1,greater<int>());
}
int get()
{
pop_heap(heap+1,heap+heap_size+1,greater<int>());
return heap[heap_size--];
}
void work()
{
int i,x,y ,ans=0;
cin>>n;
for(int i=1;i<=n;i++)
{
cin>>x;
put(x);
}
for(int i=1;i<n;i++)
{
x=get();
y=get();
ans+=x+y;
put(x+y);
}
cout<<ans;
}
int main()
{
ios::sync_with_stdio(false);
freopen("fruit.in","r",stdin);
freopen("fruit.out","w",stdout);
work();
}