POJ 3253----Fence Repair 要用到优先队列!!!

来源:互联网 发布:货拉拉软件 编辑:程序博客网 时间:2024/06/05 11:47

Description

Farmer John wants to repair a small length of the fence around the pasture. He measures the fence and finds that he needsN (1 ≤ N ≤ 20,000) planks of wood, each having some integer lengthLi (1 ≤ Li ≤ 50,000) units. He then purchases a single long board just long enough to saw into theN planks (i.e., whose length is the sum of the lengths Li). FJ is ignoring the "kerf", the extra length lost to sawdust when a sawcut is made; you should ignore it, too.

FJ sadly realizes that he doesn't own a saw with which to cut the wood, so he mosies over to Farmer Don's Farm with this long board and politely asks if he may borrow a saw.

Farmer Don, a closet capitalist, doesn't lend FJ a saw but instead offers to charge Farmer John for each of theN-1 cuts in the plank. The charge to cut a piece of wood is exactly equal to its length. Cutting a plank of length 21 costs 21 cents.

Farmer Don then lets Farmer John decide the order and locations to cut the plank. Help Farmer John determine the minimum amount of money he can spend to create theN planks. FJ knows that he can cut the board in various different orders which will result in different charges since the resulting intermediate planks are of different lengths.

Input

Line 1: One integer N, the number of planks
Lines 2.. N+1: Each line contains a single integer describing the length of a needed plank

Output

Line 1: One integer: the minimum amount of money he must spend to makeN-1 cuts

Sample Input

3858

Sample Output

34


刚开始自己做这个题时,想着先排序,然后再考虑相加的情况,现在发现错的离谱!!!希望自已以后多联系一下实际,不要有那些奇怪的想法了谨记!!!

还有一点要注意的是s的类型应定义为__int64..

<span style="color:#000000;">#include<stdio.h>#include<queue>#include<algorithm>using namespace std;int main(){    int n,i,a;    __int64 s,k,t;    priority_queue<__int64, vector<__int64>, greater<__int64> >q;    scanf("%d",&n);    for(i=0;i<n;i++)    {    scanf("%d",&a);    q.push(a);       }    s=0;    while(q.size()!=1)    {    k=q.top();q.pop();t=q.top();q.pop();s+=k+t;q.push(k+t);        }    printf("%I64d\n",s);    return 0;}</span>


0 0
原创粉丝点击