POJ 2247 Humble Numble (내 수제의 길 - 축수 2, 3, 5, 7)

Humble Numbers
Time Limit: 1000MS
 
Memory Limit: 65536K
Total Submissions: 7857
 
Accepted: 3715
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.

Source
Ulm Local 1996
제목과 문제 풀이 사고방식은 지난 POJ1338 Ugly Numbers와 똑같습니다.
POJ 1338 Ugly Numbers
코드(1AC):
#include <cstdio>
#include <cstdlib>
#include <cstring>

int at[4];
int factor[4] = {2, 3, 5, 7};
int ugly[6000];

int main(void){
    int i, j;
    int minid;
    int top;
    int id;

    at[0] = at[1] = at[2] = at[3] = 0;
    ugly[0] = 1;
    for (top = 1; top < 5845; top++){
        minid = 0;
        for (i = 1; i < 4; i++){
            if (ugly[at[minid]] * factor[minid] >= ugly[at[i]] * factor[i]){
                minid = i;
            }
        }
        ugly[top] = ugly[at[minid]] * factor[minid];
        for (i = 0; i < 4; i++){
            if (ugly[top] == ugly[at[i]] * factor[i]){
                at[i] ++;
            }
        }
    }

    while (scanf("%d", &id), id != 0){
        printf("The %d", id);
        if(id % 10 == 1 && id % 100 != 11)
            printf("st");
        else if(id % 10 == 2 && id % 100 != 12)
            printf("nd");
        else if(id % 10 == 3 && id % 100 != 13)
            printf("rd");
        else
            printf("th");
        printf(" humble number is %d.
", ugly[id - 1] ); } return 0; }

좋은 웹페이지 즐겨찾기