首页 > 其他 > 详细

leetcode-华为专题-264. 丑数 II

时间:2021-08-19 08:27:05      阅读:17      评论:0      收藏:0      [点我收藏+]

 

技术分享图片

 

class Solution {
public:
    int nthUglyNumber(int n) {
        int a = 0;
        int b = 0;
        int c = 0;
        vector<int> res(n,1);
        for(int i = 1; i < n; i++){
            int temp = min(res[a]*2,min(res[b]*3,res[c]*5));
            if(temp == res[a]*2)
                a++;
            if(temp == res[b]*3)
                b++;
            if(temp == res[c]*5)
                c++;
            res[i] = temp;
        }
        return res[n-1];
    }
};

 

leetcode-华为专题-264. 丑数 II

原文:https://www.cnblogs.com/ymec/p/15158962.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!