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

hdu 4546 比赛难度

时间:2015-04-22 13:53:10      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

优先队列,也是看了别人的代码才有的思路

#include<iostream>
#include<algorithm>
#include<queue>
#define maxn 100000+5
using namespace std;
struct stu
{
	int sum,id;
	friend bool operator<(stu x,stu y)
	{
		return x.sum>y.sum;
	}
};
priority_queue<stu>mapp;
int n,m;
int rem[maxn];
stu x,y;
int main()
{
	int Case=1,t;
	cin>>t;
	while(t--)
	{
		cin>>n>>m;
		fill(rem,rem+maxn,100000);//很重要 
		for(int i=0;i<n;i++) cin>>rem[i];
		sort(rem,rem+n);
		while(mapp.size()) mapp.pop();
		cout<<"Case #"<<Case++<<": ";
		int d=0;
		x.sum=rem[0];
		x.id=0;
		mapp.push(x);
		while(mapp.size())
		{
			x=mapp.top();
			mapp.pop();
			d++;
			if(d==m){cout<<x.sum<<endl;break;}
			y.sum=x.sum+rem[x.id+1];
			//cout<<y.sum<<" "<<y.id<<endl;
			y.id=x.id+1;
			mapp.push(y);
			y.sum=x.sum-rem[x.id]+rem[x.id+1];
			y.id=x.id+1;
			mapp.push(y); 
		} 
	}
	return 0;
}


hdu 4546 比赛难度

标签:

原文地址:http://blog.csdn.net/zafkiel_nightmare/article/details/45193979

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