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

【luogu P3378 堆】模板

时间:2018-02-26 23:13:10      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:std   cto   title   target   http   algo   body   while   pre   

题目链接:https://www.luogu.org/problemnew/show/P3378

是堆的模板...我懒,STL da fa is good

#include <iostream>
#include <cstdio>
#include <queue>
#include <algorithm>
using namespace std;
priority_queue<int,vector<int>,greater<int> > qqq;//小根堆
//priority_queue<int> qqq;//大根堆 
int ans[1000001];
int k,x,cnt=1;
int main()
{
    int n;
    cin>>n;
    for(int i = 1; i <= n; i++)
    {
        cin>>k;
        if(k == 1)
        {
            cin>>x;
            qqq.push(x);    
        }
        if(k == 2)
        {
            ans[cnt]=qqq.top();
            cnt++;
        }
        if(k == 3)
        {
            qqq.pop();
        }
        
    }
    /*while(!qqq.empty())
    {
        int x=qqq.top();
        cout<<x<<" ";
        qqq.pop();
    }都可以用来输出*/
    for(int i = 1; i < cnt; i++)
    {
        cout<<ans[i]<<endl;
    }
    return 0;
}

 

【luogu P3378 堆】模板

标签:std   cto   title   target   http   algo   body   while   pre   

原文地址:https://www.cnblogs.com/MisakaAzusa/p/8476183.html

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