zoukankan      html  css  js  c++  java
  • 丑数

    题目描述

    如果一个数的素因子只包含2,3,5或7,那么我们把这种数叫做丑数。序列1,2,3,4,5,6,7,8,9,10,12,14,15,16,18,20,21,24,25,27...展示了前20个丑数。
    请你编程寻找这个序列中的第n个元素。

    输入

    输入包含多组测试数据。每组输入为一个整数n(1<=n<=5842),当n=0时,输入结束。

    输出

    对于每组输入,输出一行“The nth humble number is number.”。里面的n由输入中的n值替换,“st”,“nd”,“rd”和“th”这些序数结尾的用法参照输出样例。

    样例输入

    1
    2
    3
    4
    11
    12
    13
    21
    22
    23
    100
    1000
    5842
    0

    样例输出

    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.

    第一次读题的时候,以为只要可以被2,3,5除尽的就是丑数,所以先后用5,3,2对待判断数取余,最后判断是否余0就行了,但是丑数是不能有除2,3,5,之外的素数因子,是允许有合数因子的。

    正确做法:从1开始,丑数的2,3,5倍也都是丑数,每求出一个丑数的倍数,用set来去重,如果set中没有,扔优先队列和set中。每次从优先队列中取出的数就是这次的丑数,判断是否是第n个数。

    是的话输出,不是的话求出它的2,3,5倍,重复下去。。。。。。。。

    记得要用 long long

  • 相关阅读:
    JavaScript操作DOM对象
    QTP(13)
    QTP(12)
    QTP(11)
    QTP(10)
    QTP(9)
    QTP(8)
    QTP(7)
    QTP(6)
    QTP(5)
  • 原文地址:https://www.cnblogs.com/jiamian/p/10652555.html
Copyright © 2011-2022 走看看