970. Powerful Integers*

970. Powerful Integers*

https://leetcode.com/problems/powerful-integers/

题目描述

Given two positive integers x and y, an integer is powerful if it is equal to x^i + y^j for some integers i >= 0 and j >= 0.

Return a list of all powerful integers that have value less than or equal to bound.

You may return the answer in any order. In your answer, each value should occur at most once.

Example 1:

Input: x = 2, y = 3, bound = 10
Output: [2,3,4,5,7,9,10]
Explanation: 
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

Example 2:

Input: x = 3, y = 5, bound = 15
Output: [2,4,6,8,10,14]

Note:

  • 1 <= x <= 100
  • 1 <= y <= 100
  • 0 <= bound <= 10^6

C++ 实现 1

参考: [Java/C++/Python] Easy Brute Force, Brute Force, 尝试所有可能的情况, 使用哈希表保存已有的结果, 避免重复.

class Solution {
public:
    vector<int> powerfulIntegers(int x, int y, int bound) {
        unordered_set<int> s;
        for (int i = 1; i <= bound; i *= x) {
            for (int j = 1; i + j <= bound; j *= y) {
                s.insert(i + j);
                if (y == 1) break;
            }
            if (x == 1) break;
        }
        return vector<int>(s.begin(), s.end());
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
To calculate integers from -2^Integer.MAX_VALUE (exclusive) to +2^Integer.MAX_VALUE (exclusive), we can use a loop that iterates from -2^Integer.MAX_VALUE to +2^Integer.MAX_VALUE, incrementing by 1 in each iteration. However, since this range is extremely large, the loop will take a very long time to complete. To design a suitable test strategy for this task, we can use boundary value analysis. We can test the following cases: 1. Minimum value (-2^Integer.MAX_VALUE) 2. Maximum value (+2^Integer.MAX_VALUE - 1) 3. Values just below the minimum value (-2^Integer.MAX_VALUE + 1) 4. Values just above the maximum value (+2^Integer.MAX_VALUE - 2) 5. Random values within the range For each of these cases, we can verify that the calculated integer is within the expected range. We can also verify that the loop terminates without any errors. Here's an example implementation of the JUnit test: ``` import static org.junit.Assert.*; import org.junit.Test; public class IntegerRangeTest { @Test public void testIntegerRange() { int min = Integer.MIN_VALUE; int max = Integer.MAX_VALUE - 1; // Test minimum value assertEquals(min, -Math.pow(2, Integer.MAX_VALUE)); // Test maximum value assertEquals(max, Math.pow(2, Integer.MAX_VALUE) - 1); // Test value just below minimum assertEquals(min + 1, -Math.pow(2, Integer.MAX_VALUE) + 1); // Test value just above maximum assertEquals(max - 1, Math.pow(2, Integer.MAX_VALUE) - 2); // Test random values within range for (int i = -1000; i <= 1000; i++) { int val = i * 1000000; assertTrue(val >= min && val <= max); } } } ``` This test verifies that the calculated integers are within the expected range for various boundary and random values.

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值