HDU-1040 as easy as a+b

其实如果用堆排序来写,这个题就比a+b难!

/*
 * HDU-1040 as easy as a+b
 * mike-w
 * 2011-8-16
 * PS: 练习堆排序的题--当然,如果用堆排序做,这就是练习堆排序的题目:p
 */
#include<stdio.h>
#define MAXN 1010

long heap[MAXN];

int swap(long *t1,long *t2)
{
	long t3=*t1;
	*t1=*t2;
	*t2=t3;
	return 0;
}

int insert(long e)
{
	int n=++heap[0];
	heap[n]=e;
	while(n>1&&heap[n]<heap[n/2])
		swap(heap+n,heap+n/2),n/=2;
	return 0;
}

long pop(void)
{
	long ret=heap[1];
	swap(heap+1,heap+heap[0]);
	heap[0]--;

	long n=1,t=1;
	while((t=n<<1)<=*heap)
		if(t+1<=*heap && heap[t+1]<heap[t] && heap[t+1]<heap[n])
			swap(heap+n,heap+t+1),n=t+1;
		else if(heap[t]<heap[n])
			swap(heap+t,heap+n),n=t;
		else
			break;
	return ret;
}

int main(void)
{
	int ncase,nnum,i;
	long t;
	
	scanf("%d",&ncase);
	while(ncase-->0)
	{
		scanf("%d",&nnum);
		for(i=0;i<nnum;i++)
			scanf("%ld",&t),insert(t);
		for(i=0;i<nnum;i++)
			printf("%ld%c",pop(),(i==nnum-1?'\n':' '));
	}
	return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值