P3378 模板堆
Posted whymhe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P3378 模板堆相关的知识,希望对你有一定的参考价值。
题目描述
如题,初始小根堆为空,我们需要支持以下3种操作:
操作1: 1 x 表示将x插入到堆中
操作2: 2 输出该小根堆内的最小数
操作3: 3 删除该小根堆内的最小数
输入输出格式
输入格式:
第一行包含一个整数N,表示操作的个数
接下来N行,每行包含1个或2个正整数,表示三种操作,格式如下:
操作1: 1 x
操作2: 2
操作3: 3
输出格式:
包含若干行正整数,每行依次对应一个操作2的结果。
输入输出样例
说明
时空限制:1000ms,128M
数据规模:
对于30%的数据:N<=15
对于70%的数据:N<=10000
对于100%的数据:N<=1000000(注意是6个0。。。不过不要害怕,经过编者实测,堆是可以AC的)
样例说明:
故输出为2、5
//写一下heap //在algorithm库中 #include<iostream> #include<cstdio> #include<cmath> #include<cstring> #include<algorithm> const int N=1000005; inline int read() { char c=getchar();int num=0; for(;!isdigit(c);c=getchar()); for(;isdigit(c);c=getchar()) num=num*10+c-‘0‘; return num; } int n; int a[N]; int main() { n=read(); int len=0; for(int i=1,opt;i<=n;++i) { opt=read(); if(opt==1) { a[++len]=read(); std::push_heap(a+1,a+len+1,std::greater<int>() ); } else if(opt==2) printf("%d\n",a[1]); else std::pop_heap(a+1,a+len+1,std::greater<int>() ),--len; } return 0; }
以上是关于P3378 模板堆的主要内容,如果未能解决你的问题,请参考以下文章