前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >HDUOJ------1058 Humble Numbers

HDUOJ------1058 Humble Numbers

作者头像
Gxjun
发布2018-03-22 10:43:44
6020
发布2018-03-22 10:43:44
举报
文章被收录于专栏:mlml

Humble Numbers

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 14343    Accepted Submission(s): 6229

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.

思路,对于任意一个数n,都可以由 n=∏q^r即由素数之积构成....

代码:

 1 #include<stdio.h>
 2 #include<string.h>
 3 #include<stdlib.h>
 4 /*策略打表实现存储*/
 5 __int64 sav[10000];
 6 int cmp(void const *a,void const *b)
 7 {
 8     return (*(__int64 *)a)-(*(__int64 *)b);
 9 }
10 int  work()
11 {
12     __int64 a,b,c,d,aa,bb,cc,dd;
13     int cnt=0;
14     for(a=0,aa=1; ;a++)
15     { 
16         if(a!=0) aa*=7;
17         if(aa>2000000000) break;
18         for(b=0,bb=1; ; b++)
19         {
20             if(b!=0) bb*=5;
21             if((aa*bb)>2000000000) break;
22             for(c=0,cc=1;  ; c++)
23             {
24                 if(c!=0)cc*=3;
25                 if((aa*bb*cc)>2000000000) break;
26                 for(d=0,dd=1; ;d++)
27                 {
28                     if(d!=0) dd*=2;
29                     if((aa*bb*cc*dd)>2000000000) break;
30                     sav[cnt++]=(aa*bb*cc*dd);
31                 }
32             }
33         }
34     }
35 
36     return cnt;
37 }
38 int main()
39 {
40     int n;
41     qsort(sav,work(),sizeof(sav[0]),cmp);
42     while(scanf("%d",&n),n)
43     {
44         int tem=n%100;
45         printf("The ");
46         if(tem>10&&tem<20)
47             printf("%dth ",n);
48         else
49         {
50             tem%=10;
51         if(tem==1)
52         printf("%dst ",n);
53         else if(tem==2)
54         printf("%dnd ",n);
55         else if(tem==3)
56             printf("%drd ",n);
57         else 
58             printf("%dth ",n);
59         }
60         printf("humble number is %I64d.\n",sav[n-1]);
61     }
62     return 0;
63 }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2014-01-06 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Humble Numbers
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档