하프 만 트 리 의 최소 대역 권 경로 길이 와 코드 를 구하 십시오.

1855 단어 데이터 구조
/*
    
5
1 2 2 5 9
    
37
     
*/
#include
#include
using namespace std;

priority_queue<int,vector<int>,greater<int> > Q;

int main()
{
    int n;
    int value;
    while(scanf("%d",&n)!=EOF){
            int ans = 0;
        while(Q.empty()==false) Q.pop();
        for(int i=0;iscanf("%d",&value);
            Q.push(value);
        }
        while(Q.size()>1){
            int a = Q.top();
            Q.pop();
            int b = Q.top();
            Q.pop();
            ans+=a+b;
            Q.push(a+b);
        }
        printf("%d
"
,ans); } return 0; }

좋은 웹페이지 즐겨찾기