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

HDU 1058 Humble Numbers (打表)

时间:2014-09-05 14:26:41      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:打表   构造   hdu   

题目链接:HDU 1058 Humble Numbers

题意:一些数他们的素数因子只有2,3,5,7。求这些数。

因为这些数的因子只可能是2,3,5,7。所以通过2,3,5,7这个四个数构造这个数列,这个数列靠后的数必定是前面的数乘上2,3,5,7得到。



AC代码:


#include<stdio.h>
#include<set>
#define ll __int64
using namespace std;
set<ll> s;
set<ll>::iterator it;
ll a[5]={2,3,5,7};
ll ans[7000];
void find()
{
	ll i;
	s.clear();
	s.insert(1);
	for(i=0;i<4;i++)
		s.insert(a[i]);
	for(i=0;i<4;i++)
	{
		for(it=s.begin();it!=s.end();it++)
		{
			ll temp=(*it)*a[i];
			if(temp>2000000000)
				break;
			s.insert(temp);
		}
	}
	ll count=1;
	for(it=s.begin();it!=s.end();it++)
		ans[count++]=*it;
}
int main()
{
	find();
	ll n;
	while(scanf("%I64d",&n)!=EOF,n)
	{
		if(n%100>10 && n%100<20)
			printf("The %I64dth humble number is ",n);
		else if(n%10==1)
			printf("The %I64dst humble number is ",n);
		else if(n%10==2)
			printf("The %I64dnd humble number is ",n);
		else if(n%10==3)
			printf("The %I64drd humble number is ",n);
		else
			printf("The %I64dth humble number is ",n);
		printf("%I64d.\n",ans[n]);
	}
	return 0;
}


HDU 1058 Humble Numbers (打表)

标签:打表   构造   hdu   

原文地址:http://blog.csdn.net/u012377575/article/details/39079871

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