99-Ugly Number II

来源:互联网 发布:javascript template 编辑:程序博客网 时间:2024/05/21 14:50

-264. Ugly Number II
Write a program to find the n-th ugly number.

Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. For example, 1, 2, 3, 4, 5, 6, 8, 9, 10, 12 is the sequence of the first 10 ugly numbers.

Note that 1 is typically treated as an ugly number.

Hint:

The naive approach is to call isUgly for every number until you reach the nth one. Most numbers are not ugly. Try to focus your effort on generating only the ugly ones.
An ugly number must be multiplied by either 2, 3, or 5 from a smaller ugly number.
The key is how to maintain the order of the ugly numbers. Try a similar approach of merging from three sorted lists: L1, L2, and L3.
Assume you have Uk, the kth ugly number. Then Uk+1 must be Min(L1 * 2, L2 * 3, L3 * 5).

此题规律不好找:参考
http://www.geeksforgeeks.org/ugly-numbers/
1到N的丑数为 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, … ;
可以分成如下三组:

(1) 1×2, 2×2, 3×2, 4×2, 5×2, …
(2) 1×3, 2×3, 3×3, 4×3, 5×3, …
(3) 1×5, 2×5, 3×5, 4×5, 5×5, …

class Solution {public:    int nthUglyNumber(int n) {        vector<int> ugly(n,0);        ugly[0] = 1;        int factor2 = 2, factor3 = 3, factor5 = 5;        int index2, index3, index5;        index2 = index3 = index5 = 0;        for(int i=1; i<n; i++){            int minNum = min(min(factor2, factor3), factor5);            ugly[i] = minNum;            if(factor2 == minNum)                 factor2 = 2 * ugly[++index2];            if(factor3 == minNum)                 factor3 = 3 * ugly[++index3];            if(factor5 == minNum)                 factor5 = 5 * ugly[++index5];        }        return ugly[n-1];    }};
0 0