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

hdu 2527 Safe Or Unsafe

时间:2015-04-22 22:19:39      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

优先队列,注意队列开始时就只有一个数的特殊情况

#include<iostream>
#include<queue>
using namespace std;
int m;
int rem[26];
priority_queue<int,vector<int>,greater<int> >mapp;
int main()
{
	int t;
	cin>>t;
	while(t--)
	{
		int m;
		string ans;
		cin>>m>>ans;
		fill(rem,rem+26,0);
		while(mapp.size()) mapp.pop();
		for(int i=0;i<ans.size();i++) rem[ans[i]-'a']++;
		for(int i=0;i<26;i++)
		{
			if(rem[i]) mapp.push(rem[i]);
		}
		int sum=0;
		if(mapp.size()==1) sum=mapp.top();//特殊情况 
		while(mapp.size()>1)
		{
			int x=mapp.top();
			mapp.pop();
			int y=mapp.top();
			mapp.pop();
			sum+=x+y;
			mapp.push(x+y); 
		}
		if(sum<=m) cout<<"yes"<<endl;
		else cout<<"no"<<endl;
	}
	return 0;
} 


hdu 2527 Safe Or Unsafe

标签:

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

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