hdu3282 动态中位数(用堆实现)

题意是求一个动态的中位数,用两个堆实现,一个是大根堆,一个是小根堆,且大根堆的元素个数等于小根堆的元素个数或者多一个,大根堆保存了比较小的前一半,小根堆保存了较大的后一半,每次求值的时候,取出大根堆的堆顶元素即可

#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<math.h>
#include<vector>
#include<map>
#include<queue>
#include <iostream>
using namespace std;
const int N=1e5+10;
int n,m;
int a[N];
struct heap{
	int a[N];
	int num;
	bool (*op)(int,int);

	void clear(){
		num=0;
	}
	void insert(int x){
	    a[++num]=x;
	    int t=num;
	    while(t>1 && op(a[t],a[t/2])){
	    	swap(a[t],a[t/2]);
	    	t/=2;
	    }
	}
	int getTop(){
		return a[1];
	}
	int getSize(){
		return num;
	}
	int pop(){
		int res=a[1];
		swap(a[1],a[num]);
		num--;
		int t=1;
		while(t*2<=num){
			int l=t*2;
			if(l<num && op(a[l+1],a[l])) l++;
			if(op(a[l],a[t])){
				swap(a[l],a[t]);
				t=l;
			}else break;
		}
		return res;
	}
}h1,h2;
bool max(int a,int b){
	return a>b;
}
bool min(int a,int b){
	return a<b;
}
int main() {
    //freopen("aaa","r",stdin);
	int T;
	scanf("%d",&T);
	h1.op=max;
    h2.op=min;
	while(T--){
		int id;
		scanf("%d",&id);
		scanf("%d",&n);
		printf("%d %d\n",id,(n+1)/2);
		int num=0;
		h1.clear();
		h2.clear();

		for(int i=1;i<=n;i++){
			scanf("%d",a+i);
			if(i&1){
				if(h1.getSize()==0 || a[i]<=h2.getTop()){
					h1.insert(a[i]);
				}else{
					h1.insert(h2.pop());
					h2.insert(a[i]);
				}
				num++;
				printf("%d%c",h1.getTop(),(num==10 || i==n)?'\n':' ');
				if(num==10) num=0;
			}else{
				if(a[i]<=h1.getTop()){
					h2.insert(h1.pop());
					h1.insert(a[i]);
				}else{
					h2.insert(a[i]);
				}
			}
		}

	}

	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值