记录编号 |
418264 |
评测结果 |
WWWWWWWWWWWW |
题目名称 |
丑数 |
最终得分 |
0 |
用户昵称 |
Marshmello |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
0.000 s |
提交时间 |
2017-06-29 20:24:16 |
内存使用 |
0.00 MiB |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
const int coeff[3]={2,3,5};
int Main(){
freopen("humble.in","r",stdin);
freopen("humble.out","w",stdout);
priority_queue<LL,vector<LL>,greater<LL> >pq;
set<LL>s;
pq.push(1);
s.insert(1);
for(int i=1;;i++){
LL x=pq.top();pq.pop();
if(i==1500){
printf("The 1500'th ugly number is%d.\n",x);
break;
}
for(int j=0;j<3;j++){
LL x2=x*coeff[j];
if(!s.count(x2)){s.insert(x2);pq.push(x2);}
}
}
}
int main(){;}
int Avc=Main();
//Copyright @2017-2018 Avc,All rights reserved.