Leetcode

2019-02-19

2019-02-19  本文已影响0人  ruicore
LeetCode 313. Super Ugly Number.jpg

LeetCode 313. Super Ugly Number

Description

Write a program to find the nth 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:

描述

编写一段程序来查找第 n 个超级丑数。

超级丑数是指其所有质因数都是长度为 k 的质数列表 primes 中的正整数。

示例:

输入: n = 12, primes = [2,7,13,19]
输出: 32 
解释: 给定长度为 4 的质数列表 primes = [2,7,13,19],前 12 个超级丑数序列为:[1,2,4,7,8,13,14,16,19,26,28,32] 。

说明:

思路

# -*- coding: utf-8 -*-
# @Author:             何睿
# @Create Date:        2019-02-19 15:35:20
# @Last Modified by:   何睿
# @Last Modified time: 2019-02-19 16:11:26


class Solution:
    def nthSuperUglyNumber(self, n: 'int', primes: 'List[int]') -> 'int':
        """
        :type n: int
        :rtype: int
        """
        # 处理特殊情况,如果n为1或者primes为空,返回1
        if n < 2 or not primes: return 1
        # 声明一个数组,用于存储获取的丑数
        uglynum = [1]
        # 辅助变量,primes的个数,当前生成的丑数的个数
        num, count = len(primes), 1
        # index数组用于存储primes中每个数上一次产生有效数的下一个位置
        index = [0 for _ in range(num)]
        while count < n:
            # 动态规划,用primes中的每个数从上一次产生有效位置的地方产生下一个数
            _next = [primes[i] * uglynum[index[i]] for i in range(num)]
            # 下一个丑数是产生的丑数中最小的数
            uglynext = min(_next)
            # 更新索引值
            for i in range(num):
                if uglynext == _next[i]: index[i] += 1
            uglynum.append(uglynext)
            count += 1
        # 返回最后一个丑数
        return uglynum[-1]

源代码文件在 这里
©本文首发于 何睿的博客,欢迎转载,转载需保留文章来源,作者信息和本声明.

上一篇下一篇

猜你喜欢

热点阅读