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;
    }
  • 相关阅读:
    随笔:我为什么要写博客?
    用纯C语言写的一个植物大战僵尸的外挂
    方法:如何获取操作系统所有分区(逻辑驱动器)
    Srping syntactically incorrect.错误记录
    重建项目报错
    easyui datagrid 跨页选择
    CentOS 6编译安装ipvsadm和keepalived
    CentOS 6下ActiveMQ 5.5安装及使用MySQL
    extjs 4中TreePanel和GridPanel使用
    Linux安装性能问题
  • 原文地址:https://www.cnblogs.com/w-y-1/p/5752208.html
Copyright © 2011-2022 走看看