码迷,mamicode.com
首页 > 其他好文 > 详细

优先队列

时间:2020-01-28 17:24:03      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:ref   span   bit   sha   ++   push   cli   模板题   col   

一:模板题与解释

1.仅有定义即可完成优先队列(题面

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    priority_queue<int,vector<int>,greater<int> >pq;
    int n,t;
    cin>>n;
    for(int i=0;i<n;++i){
        cin>>t;
        pq.push(t);
    }
    ll ans=0;
    while(pq.size()>=2){
        int a,b;
        a=pq.top(),pq.pop();
        b=pq.top(),pq.pop();
        ans+=a+b;
        pq.push(a+b);
    }
    cout<<ans<<endl;
    return 0;
}

2.优先队列具有多种定义方法,目前还不会在结构体内定义优先队列的operatior操作:推荐

优先队列

标签:ref   span   bit   sha   ++   push   cli   模板题   col   

原文地址:https://www.cnblogs.com/waryan/p/12238263.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!