-
Notifications
You must be signed in to change notification settings - Fork 0
/
Day-4_Ugly_Number_II.py
36 lines (29 loc) · 1.29 KB
/
Day-4_Ugly_Number_II.py
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
'''
Write a program to find the n-th ugly number.
Ugly numbers are positive numbers whose prime factors only include 2, 3, 5.
Example:
Input: n = 10
Output: 12
Explanation: 1, 2, 3, 4, 5, 6, 8, 9, 10, 12 is the sequence of the first 10 ugly numbers.
Note:
1 is typically treated as an ugly number.
n does not exceed 1690.
Hide Hint #1
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.
Hide Hint #2
An ugly number must be multiplied by either 2, 3, or 5 from a smaller ugly number.
Hide Hint #3
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.
Hide Hint #4
Assume you have Uk, the kth ugly number. Then Uk+1 must be Min(L1 * 2, L2 * 3, L3 * 5).
'''
class Solution:
def nthUglyNumber(self, n):
factors, k = [2,3,5], 3
starts, Numbers = [0] * k, [1]
for i in range(n-1):
candidates = [factors[i]*Numbers[starts[i]] for i in range(k)]
new_num = min(candidates)
Numbers.append(new_num)
starts = [starts[i] + (candidates[i] == new_num) for i in range(k)]
return Numbers[-1]