题意:丑数是指不能被2,3,5以外的其他素数整除的数。把丑数从小到大排列起来,结果如下:1,2,3,4,5,6,8,9,10,12,15……
求第1500个丑数。
思路:用优先队列存储,用set判断有没有出现过。
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
int main()
{
priority_queue<LL, vector<LL>, greater<LL> > pq;//采取默认优先级,最小值优先
set<LL> s;
int i = 1;
pq.push(1);
s.insert(1);
while (i <= 1500)
{
LL x = pq.top();
pq.pop();
if(i == 1500)
{
printf("The 1500'th ugly number is %lld.\n", x);
break;
}
if(!s.count(2 * x)) pq.push(2 * x), s.insert(2 * x);
if(!s.count(3 * x)) pq.push(3 * x), s.insert(3 * x);
if(!s.count(5 * x)) pq.push(5 * x), s.insert(5 * x);
i++;
}
return 0;
}