51nod 1010 stl/数论/二分

http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1010

1010 只包含因子2 3 551nod 1010  stl/数论/二分

基准时间限制:1 秒 空间限制:131072 KB 分值: 10 难度:2级算法题
51nod 1010  stl/数论/二分 收藏
51nod 1010  stl/数论/二分 关注
K的因子中只包含2 3 5。满足条件的前10个数是:2,3,4,5,6,8,9,10,12,15。
所有这样的K组成了一个序列S,现在给出一个数n,求S中 >= 给定数的最小的数。
例如:n = 13,S中 >= 13的最小的数是15,所以输出15。
Input
第1行:一个数T,表示后面用作输入测试的数的数量。(1 <= T <= 10000)
第2 - T + 1行:每行1个数N(1 <= N <= 10^18)
Output
共T行,每行1个数,输出>= n的最小的只包含因子2 3 5的数。
Input示例
5
1
8
13
35
77
Output示例
2
8
15
36
80
这个就是筛丑数把,可以用stl里的容器操作,要筛10915个出来就好了一个也不能少不然会WA的,紫书例题。
 #include<iostream>
#include<cstdio>
#include<cstring>
#include<queue>
#include<set>
#include<ctime>
#include<functional>
#include<algorithm>
using namespace std;
#define LL long long
LL num[] = { ,, };
priority_queue<LL, vector<LL>, greater<LL> >q;
set<LL>s;
int main()
{
q.push();
s.insert();
bool ok = ;
int sum = ;
while (sum<=) {
LL u = q.top();q.pop();
for (int i = ;i < ;++i) {
LL x = u*num[i];
if (x< || x>1e18) { continue; }
if (!s.count(x)) { sum++;s.insert(x);q.push(x); }
}
}
LL T, N;
s.erase();
cin >> T;
while (T--) {
scanf("%lld", &N);
printf("%lld\n", *s.lower_bound(N));
}
//system("pause");
return ;
}
上一篇:1007 正整数分组 1010 只包含因子2 3 5的数 1014 X^2 Mod P 1024 矩阵中不重复的元素 1031 骨牌覆盖


下一篇:51Nod 1010 只包含因子2 3 5的数 Label:None