题解 | #丑数#

丑数

https://www.nowcoder.com/practice/6aa9e04fc3794f68acf8778237ba065b

#include <queue>
class Solution {
 public:
  /**
   * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
   *
   *
   * @param index int整型
   * @return int整型
   */
  int GetUglyNumber_Solution(int index) {
    // write code here
    //排除0
    if (index == 0 ) {
      return 0;
    }
    priority_queue<long, vector<long>, greater<long>> pq;
    unordered_set<long> uset;
    pq.push(1);
    int i = 0;
    uset.insert(1);
    vector<int> prim = {2, 3, 5};
    long top_value = 0;
    while ( i < index ) {
      top_value = pq.top();
    
      pq.pop();
      i++;
      for (auto num : prim) {
        int tem = num * top_value;
        if (uset.count(tem) != 0) {
          continue;
        } else {
          uset.insert(tem);
          pq.push(num * top_value);
        }

      }
    }
    return top_value;
  }
};

如果x是丑数,则2x, 3x, 5x均是丑数。

全部评论

相关推荐

牛舌:如果我不想去,不管对方给了多少,我一般都会说你们给得太低了。这样他们就会给下一个offer的人更高的薪资了。
点赞 评论 收藏
分享
头像
11-21 11:39
四川大学 Java
是红鸢啊:忘了还没结束,还有字节的5k 违约金
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务