解题:请看代码注释
代码:
#include <iostream> #include <cstdio> #include <set> using namespace std; typedef long long ll; const ll X = 59084709587505; /******************************************************************************** * 原型:有基数(3,5,7),让不断加入新元素的队列头部*(3,5,7),用set去重和排序 ********************************************************************************* **/ int main(){ set<ll> s; int a[3] = { 3,5,7 }; ll _new,tou = 1; //当前队列头部 while(true){ for(int i = 0;i < 3;i++){ //头部*基数 _new = tou * a[i]; if(_new <= X){ //如果满足条件就加入队列 s.insert(_new); cout << _new << endl; } } //更新队列头部 tou = *(s.upper_bound(tou));//从set中选择比当前头大的最小数(后一个数) //如果新头大于X就不满足条件 if(tou > X) break; } cout << "长度为:" << s.size() << endl; return 0; }