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

hdu 1425 sort

时间:2015-06-14 09:31:37      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

这种方法也是万万没想到的~

#include<iostream>
#define maxn 1000000+5
using namespace std;
int f[maxn];
int n,m;
int main()
{
	cin.sync_with_stdio(false);
	while(cin>>n>>m)
	{
		fill(f,f+maxn,0);
		for(int i=0;i<n;i++)
		{
			int x;
			cin>>x;
			f[x+500000]++;
		}
		int flag=0;
		for(int i=maxn-1;i>=0;i--)
		{
			if(f[i])
			{
				while(f[i]--)
				{
					if(flag) cout<<" ";
					cout<<i-500000;
					flag++;
					m--;
					if(!m) goto en;
				}
			}
		}
		en:
		cout<<endl;
	}
	return 0;
}


 

hdu 1425 sort

标签:

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

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