zoukankan      html  css  js  c++  java
  • POJ 2247 Humble Numbers

    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.

    打个表,注意输出格式
    #include<iostream>
    #include<cstdio>
    #include<cmath>
    #include<cstdlib>
    #include<algorithm>
    #include<cstring>
    #include <queue>
    #include <vector>
    #include<bitset>
    #include<map>
    #include<deque>
    using namespace std;
    typedef long long LL;
    const int maxn = 1e4+5;
    const int mod = 77200211+233;
    typedef pair<int,int> pii;
    #define X first
    #define Y second
    #define pb push_back
    //#define mp make_pair
    #define ms(a,b) memset(a,b,sizeof(a))
    const int inf = 0x3f3f3f3f;
    #define lson l,m,2*rt
    #define rson m+1,r,2*rt+1
    typedef long long ll;
    #define N 100010
    
    int dp[6000];
    
    void init(){
        dp[1]=1;
        int p2,p3,p5,p7;
        p2=p3=p5=p7=1;
        int cnt=2;
        while(cnt<=5842){
            dp[cnt]=min(dp[p2]*2,min(dp[p3]*3,min(dp[p5]*5,dp[p7]*7)));
            if(dp[cnt]==2*dp[p2]) p2++;
            if(dp[cnt]==3*dp[p3]) p3++;
            if(dp[cnt]==5*dp[p5]) p5++;
            if(dp[cnt]==7*dp[p7]) p7++;
            cnt++;
    
        }
    }
    int main(){
        init();
        int n;
        while(scanf("%d",&n)&&n){
            if(n%10==1&&n%100!=11) printf("The %dst humble number is %d.
    ",n,dp[n]);
            else if(n%10==2&&n%100!=12) printf("The %dnd humble number is %d.
    ",n,dp[n]);
            else if(n%10==3&&n%100!=13) printf("The %drd humble number is %d.
    ",n,dp[n]);
            else printf("The %dth humble number is %d.
    ",n,dp[n]);
        }
    
        return 0;
    }


  • 相关阅读:
    一个简单的php站点配置
    nginx基本配置
    redis命令大全
    while()
    遍历字符串
    带空格的字符串逆转(简洁版)
    Java Swing 介绍
    java键盘输入
    做一个完整的Java Web项目需要掌握的技能
    biu
  • 原文地址:https://www.cnblogs.com/fht-litost/p/8855362.html
Copyright © 2011-2022 走看看