博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1058 Humble Number
阅读量:6681 次
发布时间:2019-06-25

本文共 2541 字,大约阅读时间需要 8 分钟。

Humble Number

Problem Description
A number whose only prime factors are 2,3,5 or 7 is called a humble number. The sequence 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 18, 20, 21, 24, 25, 27, ... shows the first 20 humble numbers. 
Write a program to find and print the nth element in this sequence
 
Input
The input consists of one or more test cases. Each test case consists of one integer n with 1 <= n <= 5842. Input is terminated by a value of zero (0) for n.
 
Output
For each test case, print one line saying "The nth humble number is number.". Depending on the value of n, the correct suffix "st", "nd", "rd", or "th" for the ordinal number nth has to be used like it is shown in the sample output.
 
Sample Input
1
2
3
4
11
12
13
21
22
23
100
1000
5842
0
 
Sample Output
The 1st humble number is 1.
The 2nd humble number is 2.
The 3rd humble number is 3.
The 4th humble number is 4.
The 11th humble number is 12.
The 12th humble number is 14.
The 13th humble number is 15.
The 21st humble number is 28.
The 22nd humble number is 30.
The 23rd humble number is 32.
The 100th humble number is 450.
The 1000th humble number is 385875.
The 5842nd humble number is 2000000000.

 

题目大意:求出以2,3,5,7为因子的第n个数字。

代码如下:注意111后面跟th

1 # include
2 # include
3 # include
4 # include
5 # define LL __int64 6 7 using namespace std; 8 9 int cmp(const void *a,const void *b)10 {11 return *(int *)a - *(int *)b;12 }13 LL dp[10000],num;14 void init()15 {16 num = 0;17 LL i,j,k,m;18 for(i=1; i<=2000000000; i*=7)19 {20 for(j=1; i*j<=2000000000; j*=5)21 {22 for(k=1; i*j*k<=2000000000; k*=3)23 {24 for(m=1; i*j*k*m<=2000000000; m*=2)25 {26 dp[num] = i*j*k*m;27 //printf("dp[%I64d] = %I64d\n",num,dp[num]);num定义成了__int64位,之前一直输出%d,看结果一直不对,坑28 num++;29 }30 }31 }32 }33 qsort(dp,num,sizeof(dp[0]),cmp);34 }35 int main()36 {37 init();38 int n,i,j,a,b,c;39 while(scanf("%d",&n)&&n)40 {41 if(n%10==1 &&n%100 != 11)42 printf("The %dst humble number is ",n);43 else if(n%10==2 &&n%100 != 12)44 printf("The %dnd humble number is ",n);45 else if(n%10==3 &&n%100 != 13)46 printf("The %drd humble number is ",n);47 else48 printf("The %dth humble number is ",n);49 printf("%I64d.\n",dp[n-1]);50 }51 return 0;52 }

 

 

转载地址:http://dcxao.baihongyu.com/

你可能感兴趣的文章
专访梭子鱼:以“立体交付”保障Web应用安全
查看>>
微软SQL Server 2012新特性Silverlight报表客户端 - Power View
查看>>
记一次网站收录数和排名的实现
查看>>
pthread_cond_wait()用法分析
查看>>
poj-3368 Frequent values ***
查看>>
Install IIS 7.5 PHP & FastCGI for PHP on Windows 7
查看>>
C#连接Excel示例代码和驱动
查看>>
彻底弄明白之java多线程中的volatile
查看>>
30幅非常漂亮的微距摄影作品欣赏
查看>>
6、关于ctemplate的一个例子
查看>>
Sql Server 锁资源模式详解
查看>>
标准电声系统测试
查看>>
SQLite移植手记
查看>>
volcanol_Linux_问题汇总系列
查看>>
Bing Maps开发扩展一:Oracle Spatial的空间数据渲染
查看>>
HTTP中Keep-Alive(长连接)的一些说明
查看>>
apache2.4.1+mysql5.5.21+php5.4.0安装实践(二)
查看>>
LintCode 最大正方形
查看>>
python三方库之requests-快速上手
查看>>
图像工具包VintaSoftImaging.NET SDK v8.5,新增独立web服务
查看>>