970. 强整数, leetcode

给定两个正整数 x 和 y,如果某一整数等于 x^i + y^j,其中整数 i >= 0 且 j >= 0,那么我们认为该整数是一个强整数

返回值小于或等于 bound 的所有强整数组成的列表。

你可以按任何顺序返回答案。在你的回答中,每个值最多出现一次。

 

示例 1:

输入: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

示例 2:

输入:x = 3, y = 5, bound = 15
输出:[2,4,6,8,10,14]

 

提示:

  • 1 <= x <= 100
  • 1 <= y <= 100
  • 0 <= bound <= 10^6
class Solution {
public:
    vector<int> powerfulIntegers(int x, int y, int bound) {
        if (x <= 0 || y <= 0 || bound < 0) {
            return vector<int> ();
        }
        unordered_set<int> res;
        int i = 0, j = 0;
        vector<int> dx, dy;
        Permute(x, y, i, j, dx, dy, bound, res);
        return vector<int>(res.begin(), res.end());
    }
    void Permute(int x, int y, int i, int j, vector<int>& dx, vector<int>& dy,
                int bound, unordered_set<int>& res) {
        if (i > 20 || j > 20) { 
         return;
        }
        if (i >= dx.size()) {
            int val = Power(x, i);
            dx.push_back(val);
        }
        if (j >= dy.size()) {
            int val = Power(y, j);
            dy.push_back(val);
        }
        int s = dx[i] + dy[j];
        if (s > bound) {
            return ;
        } else {
            if (res.insert(s).second == false) {
                return ;
            }
        }
        Permute(x, y, i + 1, j, dx, dy, bound, res);
        Permute(x, y, i, j + 1, dx, dy, bound, res);
    }
    int Power(int base, int i) {
        if (base == 0 || base == 1) {
            return base;
        }
       int result = 1;
        while (i > 0) {
            result *= base;
            i -= 1;
        }
        return result;
    }
};

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值