码迷,mamicode.com
首页 > 其他好文 > 详细

UVa136 Ugly Numbers (STL)

时间:2016-08-31 22:18:53      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

链接:http://acm.hust.edu.cn/vjudge/problem/19437
分析:priority_queue的应用。丑数指不能被2,3,5以外的其它素数整除的数,最小的丑数是1(1不是素数),然后对于每个丑数x,2x,3x,5x也是丑数,所以就从小到大生成每个丑数保存在优先队列里,每次取队列中最小的丑数扩展,注意生成新的丑数时还需判断之前是否已经生成过,这里用set就可以保存生成过的所有丑数。

 1 #include <iostream>
 2 #include <queue>
 3 #include <set>
 4 #include <vector>
 5 using namespace std;
 6 
 7 typedef long long LL;
 8 const int coeff[3] = {2, 3, 5};
 9 
10 int main() {
11     priority_queue<int, vector<LL>, greater<LL> > pq;
12     set<LL> s;
13     pq.push(1);
14     s.insert(1);
15     for (int i = 1; ; i++) {
16         LL x = pq.top(); pq.pop();
17         if (i == 1500) {
18             cout << "The 1500‘th ugly number is " << x << ".\n";
19             break;
20         }
21         for (int j = 0; j < 3; j++) {
22             LL x2 = x * coeff[j];
23             if (!s.count(x2)) { s.insert(x2); pq.push(x2); }
24         }
25     }
26     return 0;
27 }

 

UVa136 Ugly Numbers (STL)

标签:

原文地址:http://www.cnblogs.com/XieWeida/p/5827454.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!