POJ 3253 (하프 만 나무)

Fence Repair
Time Limit: 2000MS Memory Limit: 65536K
Description
Farmer John wants to repair a small length of the fence around the pasture. He measures the fence and finds that he needs N (1 ≤ N ≤ 20,000) planks of wood, each having some integer length Li (1 ≤ Li ≤ 50,000) units. He then purchases a single long board just long enough to saw into the N 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 the N-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 the N 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 make N-1 cuts
Sample Input
3 8 5 8
Sample Output
34
생각:
(1) 제목: 긴 나무 한 조각 이 있 는데 n - 1 번 톱질 하고 n 원 으로 톱질 해 야 한다. 톱질 하 는 만큼 돈 을 쓰 고 가장 적은 돈 을 써 야 한다.
(2) 예: 2 번 톱질 하고 3 조각 으로 톱질 하 며 길 이 는 8, 5, 8 이다. 즉 긴 나무 에서 21 (8 + 5 + 8 = 21) 을 먼저 톱질 하고 21 에서 5 를 톱질 한 다음 21 - 5 = 16 에서 8 을 톱질 하면 8, 5, 8 을 얻는다. 비용 은 21 + 5 + 8 = 34 이다.
(3) 추상: 하프 만 나무의 구 해 과정 으로 본다 (잎 노드 를 제외 한 노드 와).
(4) 방법: 집합 에서 두 개의 길이 가 가장 짧 은 널 빤 지 를 찾 아 집합 에 합 쳐 반복 하 는 과정 에서 집합 에 한 요소 만 남 을 때 까지 반복 한다.
(5) 주의: 화합 을 구 할 때 long long sum 을 사용 합 니 다.
AC 코드:
#include 
#include 
#include 
#include 
using namespace std;
//     ,         
priority_queue<int,vector<int>,greater<int> >q;
//       
//priority_queueq;
int main()
{
    int n,t;
    while(cin>>n)
    {
        while(q.empty()==false) q.pop();
        for(int i=0;icin>>t;//        
            q.push(t);//    
        }
        long long ans=0;//    
        while(q.size()>1)//      1 
        {
            int a=q.top();//           
            q.pop();
            int b=q.top();//  a           
            q.pop();
            ans+=a+b;//          ,   a+b
            q.push(a+b);//         
        }
        cout<//    
    }
    return 0;
}

좋은 웹페이지 즐겨찾기