-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path313.super-ugly-number.java
More file actions
78 lines (72 loc) · 2.03 KB
/
313.super-ugly-number.java
File metadata and controls
78 lines (72 loc) · 2.03 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
* @lc app=leetcode id=313 lang=java
*
* [313] Super Ugly Number
*
* https://leetcode.com/problems/super-ugly-number/description/
*
* algorithms
* Medium (41.54%)
* Likes: 373
* Dislikes: 96
* Total Accepted: 62.2K
* Total Submissions: 148.5K
* Testcase Example: '12\n[2,7,13,19]'
*
* Write a program to find the n^th super ugly number.
*
* Super ugly numbers are positive numbers whose all prime factors are in the
* given prime list primes of size k.
*
* Example:
*
*
* Input: n = 12, primes = [2,7,13,19]
* Output: 32
* Explanation: [1,2,4,7,8,13,14,16,19,26,28,32] is the sequence of the first
* 12
* super ugly numbers given primes = [2,7,13,19] of size 4.
*
* Note:
*
*
* 1 is a super ugly number for any given primes.
* The given numbers in primes are in ascending order.
* 0 < k ≤ 100, 0 < n ≤ 10^6, 0 < primes[i] < 1000.
* The n^th super ugly number is guaranteed to fit in a 32-bit signed integer.
*
*
*/
class Solution {
public int nthSuperUglyNumber(int n, int[] primes) {
int[] ugly = new int[n];
PriorityQueue<Candidate> pq = new PriorityQueue<>();
ugly[0] = 1;
for (int i = 0; i < primes.length; i++) {
pq.offer(new Candidate(primes[i], 0, primes[i]));
}
for (int i = 1; i < n; i++) {
int next = pq.peek().curVal;
ugly[i] = next;
while(pq.peek().curVal == ugly[i]) {
Candidate cur = pq.poll();
pq.add(new Candidate(ugly[cur.index] * cur.base, cur.index + 1, cur.base));
}
}
return ugly[n - 1];
}
public class Candidate implements Comparable<Candidate> {
int curVal;
int index;
int base;
public Candidate(int curVal, int index, int base) {
this.curVal = curVal;
this.index = index;
this.base = base;
}
@Override
public int compareTo(Candidate that) {
return this.curVal - that.curVal;
}
}
}