zoukankan      html  css  js  c++  java
  • hdu---1058---Humble Numbers

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1058

    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.
     
    就比丑数多了一个素因数7罢了
    此题还要明白一个常识:
    1.如果n对10取余余1,并且对100取余不等于11,那么用英文表示第几的时候以st结尾
    2.如果n对10取余余2,并且对100取余不等于12,那么用英文表示第几的时候以nd结尾
    3.如果n对10取余余3,并且对100取余不等于13,那么用英文表示第几的时候以rd结尾
    4.其他的都以th结尾。
    #include<cstdio>
    #include<iostream>
    #include<algorithm>
    using namespace std;
    
    const int maxn=6007;
    long long Humble[maxn]= {0,1};
    
    
    void Init()
    {
        long long num2=2,num3=3,num5=5, num7=7;
        int i, j, k, z;
        int t;
    
        i=j=k=z=1;
        for(int x=2; x<maxn; x++)
        {
            t=min(num2, min(num3, min(num5, num7)));
            Humble[x]=t;
    
            if(t==num2)
                num2=Humble[++i]*2;
            if(t==num3)
                num3=Humble[++j]*3;
            if(t==num5)
                num5=Humble[++k]*5;
            if(t==num7)
                num7=Humble[++z]*7;
        }
    }
    int main()
    {
        Init();
    
        int n;
        while(scanf("%d", &n), n)
        {
            if(n%10==1&&n%100!=11)
                printf("The %dst humble number is %lld.
    ", n, Humble[n]);
    
            else if(n%10==2&&n%100!=12)
                printf("The %dnd humble number is %lld.
    ", n, Humble[n]);
    
            else if(n%10==3&&n%100!=13)
                printf("The %drd humble number is %lld.
    ", n, Humble[n]);
                
            else
                printf("The %dth humble number is %lld.
    ", n, Humble[n]);
        }
        return 0;
    }
  • 相关阅读:
    gdb常用命令
    linux退格键处理
    JavaScript的MVC模式(转载)
    linux编程 -- 网络编程(一)
    数组操作-将下标变成从0开始的连续数字
    很多学ThinkPHP的新手会遇到的问题
    PHP 统计一维数组value相同的元素的个数num,并将其转化为下标为数字,值是value和num的二维数组
    MySQL数据库使某个不是主键的字段唯一
    利用JS实现表单的自动提交
    thinkphp 使每个模板页都包含一个header文件和一个footer文件
  • 原文地址:https://www.cnblogs.com/w-y-1/p/5752208.html
Copyright © 2011-2022 走看看