原文地址:https://www.jianshu.com/p/85a14a65dc7f
时间限制:1秒 空间限制:32768K
题目描述
把只包含质因子2、3和5的数称作丑数。例如6、8都是丑数,但14不是,因为它包含质因子7。习惯上我们把1当做是第一个丑数。求按从小到大的顺序的第N个丑数。
我的代码
class Solution {
public:
int GetUglyNumber_Solution(int index) {
//if(index<1)
//throw index;
if(index<7)
return index;
int t2=0,t3=0,t5=0;
vector<int> res(index,0);
res[0]=1;
for(int i=1;i<index;i++){
res[i]=min(min(2*res[t2],3*res[t3]),5*res[t5]);
if(res[i]==2*res[t2]) t2++;
if(res[i]==3*res[t3]) t3++;
if(res[i]==5*res[t5]) t5++;
}
return res[index-1];
}
};
运行时间:3ms
占用内存:476k