Leetcode 313: Super Ugly Number (超级丑数)

  1. Super Ugly Number
    Medium
    A super ugly number is a positive integer whose prime factors are in the array primes.
    Given an integer n and an array of integers primes, return the nth super ugly number.
    The nth super ugly number is guaranteed to fit in a 32-bit signed integer.

Example 1:

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.

Example 2:

Input: n = 1, primes = 2,3,5

Output: 1

Explanation: 1 has no prime factors, therefore all of its prime factors are in the array primes = 2,3,5.

Constraints:

1 <= n <= 105

1 <= primes.length <= 100

2 <= primesi <= 1000

primesi is guaranteed to be a prime number.

All the values of primes are unique and sorted in ascending order.

解法1:用Heap做。注意去重可以用topNode.product != uglysindex

cpp 复制代码
struct Node {
    int prime;
    int index;
    long long product;
    Node(int pri, int id, long long pro) : prime(pri), index(id), product(pro) {}
    bool operator < (const Node & node) const {
        return product >= node.product;
    }
};

class Solution {
public:
    int nthSuperUglyNumber(int n, vector<int>& primes) {
        int primesCount = primes.size();
        vector<long long> uglys(n + 1, 0);
        vector<int> indexes(primesCount, 1);
        priority_queue<Node> minHeap;
        uglys[1] = 1;
        int index = 1;
        for (int i = 0; i < primesCount; i++) {
            minHeap.push(Node(primes[i], 1, primes[i])); //1 * primes[i] = primes[i]
        }

        while (index <= n) {
            int minV = INT_MAX;
            Node topNode = minHeap.top();
            minHeap.pop();
            if (topNode.product != uglys[index]) {
                if (index < n) {
                    uglys[++index] = topNode.product;
                }
                else break;
            }
            minHeap.push(Node(topNode.prime, topNode.index + 1, uglys[topNode.index + 1] * topNode.prime));
        }
        return (int)uglys[n];
    }
};
相关推荐
豆瓣鸡9 分钟前
算法日记 - Day3
java·开发语言·算法
白白白小纯22 分钟前
算法篇—反转链表
c语言·数据结构·算法·leetcode
Achou.Wang36 分钟前
深入理解go语言-第5章 并发编程——Go的灵魂
大数据·算法·golang
The Chosen One9851 小时前
高进度算法模板速记(待完善)
java·前端·算法
圣保罗的大教堂3 小时前
leetcode 3517. 最小回文排列 I 中等
leetcode
土豆.exe3 小时前
Fastjson2 2.0.53 哈希碰撞 RCE:从原理到三种打法
算法·哈希算法
黄河123长江4 小时前
有限Abel群的结构()
算法
Jerry4 小时前
LeetCode 92. 反转链表 II
算法
骊城英雄4 小时前
Rust从入门到精通-trait
人工智能·算法·rust
可编程芯片开发5 小时前
基于PI控制算法的pwm直流电机控制系统Simulink建模与仿真
算法