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, and n does not exceed 1690.

思路

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).

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
class Solution {
public:
int nthUglyNumber(int n) {
int list_2 = 0, list_3 = 0, list_5 = 0;
vector<int> uglynumberlist;
uglynumberlist.push_back(1);
while(n > 1){
int list2_cur = 2 * uglynumberlist[list_2];
int list3_cur = 3 * uglynumberlist[list_3];
int list5_cur = 5 * uglynumberlist[list_5];
int cur = 0;
int pointer = 0;
if(list2_cur > list3_cur){
cur = list3_cur;
pointer = 3;
}
else{
cur = list2_cur;
pointer = 2;
}
if(cur > list5_cur){
cur = list5_cur;
pointer = 5;
}
switch(pointer){
case 2: {
list_2++;
break;
}
case 3: {
list_3++;
break;
}
case 5: {
list_5++;
break;
}
default: break;
}
if(cur != uglynumberlist.back()){
uglynumberlist.push_back(cur);
n--;
}
}
return uglynumberlist.back();
}
};