• HDUOJ------1058 Humble Numbers


    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.
    ",sav[n-1]);
    61     }
    62     return 0;
    63 }
    View Code
  • 相关阅读:
    hdu 母牛的故事 递推题
    并查集
    又是矩阵 Uva上的一道 经典题目
    poj 3233 矩阵幂取模
    electronvue + elementui构建桌面应用
    主板cmos 映射表
    高级配置与电源接口 acpi 简介
    警告不能读取 AppletViewer 属性文件的解决方法
    高级 Synth(转载)
    vbs 查看硬件信息代码
  • 原文地址:https://www.cnblogs.com/gongxijun/p/3507793.html
Copyright © 2020-2023  润新知