给定两个正整数 x 和 y,如果某一整数等于 x^i + y^j,其中整数 i >= 0 且 j >= 0,那么我们认为该整数是一个强整数。
返回值小于或等于 bound 的所有强整数组成的列表。
你可以按任何顺序返回答案。在你的回答中,每个值最多出现一次
输入:x = 2, y = 3, bound = 10 输出:[2,3,4,5,7,9,10] 解释: 2 = 2^0 + 3^0 3 = 2^1 + 3^0 4 = 2^0 + 3^1 5 = 2^1 + 3^1 7 = 2^2 + 3^1 9 = 2^3 + 3^0 10 = 2^0 + 3^2
解题思路:暴力枚举,然后放进set里面去一下重
class Solution {
public:
vector<int> powerfulIntegers(int x, int y, int bound) {
vector<int> ans;
vector<int> xx;
vector<int> yy;
for(int i = 0 ; i < bound ; i++)
{
if(pow(x,i) < bound) xx.emplace_back(pow(x,i));
if(pow(y,i) < bound) yy.emplace_back(pow(y,i));
}
unordered_set<int> hash;
for(int i = 0 ; i < xx.size() ; i++)
{
for(int j = 0 ; j < yy.size() ; j++)
{
if(xx[i] + yy[j] <= bound)
hash.insert(xx[i] + yy[j]);
}
}
for(const auto& x : hash)
{
ans.emplace_back(x);
}
//sort(ans.begin(),ans.end());
return ans;
}
};