博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVA-136Ugly numbers
阅读量:5256 次
发布时间:2019-06-14

本文共 1012 字,大约阅读时间需要 3 分钟。

Ugly numbers are numbers whose only prime factors are 2, 3 or 5. The sequence 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, ... shows the first 11 ugly numbers. By convention, 1 is included. Write a program to find and print the 1500’th ugly number. Input There is no input to this program. Output Output should consist of a single line as shown below, with ‘’ replaced by the number computed. Sample Output The 1500'th ugly number is .

#include
int b[3]={2,3,5};using namespace std;int main(){ set
s; priority_queue
,greater
>que; que.push(1); s.insert(1); int k; for(k=1;;k++) { if(k==1500){ printf("The 1500'th ugly number is %lld.\n",que.top());return 0; } long long cnt=que.top(); que.pop(); for(int i=0;i<=2;i++) { long long z=cnt*(long long) b[i]; if(!s.count(z)){ s.insert(z); que.push(z); } } } return 0;}

 

转载于:https://www.cnblogs.com/songorz/p/9386505.html

你可能感兴趣的文章
bzoj3224 splay板子
查看>>
程序存储问题
查看>>
Mac版OBS设置详解
查看>>
优雅地书写回调——Promise
查看>>
android主流开源库
查看>>
AX 2009 Grid控件下多选行
查看>>
PHP的配置
查看>>
Struts框架----进度1
查看>>
Round B APAC Test 2017
查看>>
MySQL 字符编码问题详细解释
查看>>
Ubuntu下面安装eclipse for c++
查看>>
让IE浏览器支持CSS3圆角属性的方法
查看>>
巡风源码阅读与分析---nascan.py
查看>>
LiveBinding应用 dataBind 数据绑定
查看>>
Linux重定向: > 和 &> 区别
查看>>
nginx修改内核参数
查看>>
C 筛选法找素数
查看>>
TCP为什么需要3次握手与4次挥手(转载)
查看>>
IOC容器
查看>>
Windows 2003全面优化
查看>>