程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> poj 3253 Fence Repair (優先隊列)

poj 3253 Fence Repair (優先隊列)

編輯:C++入門知識

poj 3253 Fence Repair (優先隊列)


///優先隊列,每次取兩個最小的木板的長度,再把這個長度放進隊列,反復取
# include 
# include 
# include 
# include 
# include 
# include 
using namespace std;
///長度小的放在前面
class cmp
{
public:
    bool operator ()(const __int64 a,const __int64 b)const
    {
        return a>b;
    }
};
int main()
{
    int n;
    __int64 temp,sum,p1,p2;
    while(~scanf("%d",&n))
    {
        priority_queue<__int64,vector<__int64>,cmp>q;///定義優先隊列
        while(n--)
        {
            scanf("%I64d",&temp);
            q.push(temp);
        }
        sum=0;
        while(q.size()>1)
        {
            p1=q.top();
            q.pop();
            p2=q.top();
            q.pop();
            temp=p1+p2;
            sum+=temp;
            q.push(temp);
        }
        printf("%I64d\n",sum);

    }
    return 0;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved