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:


Solution:

class Solution {
    public List<Integer> powerfulIntegers(int x, int y, int bound) {
        Set<Integer> set = new HashSet();
        Deque<int[]> queue = new ArrayDeque();
        Set<List<Integer>> visited = new HashSet();
        queue.offer(new int[]{0, 0});
        visited.add(Arrays.asList(0, 0));
        while (!queue.isEmpty()) {
            int[] curr = queue.poll();
            int i = curr[0], j = curr[1];
            int next = (int) Math.pow(x, i) + (int) Math.pow(y, j);
            if (next <= bound) {
                set.add(next);
                if (y > 1 && visited.add(Arrays.asList(i, j + 1))) {
                    queue.offer(new int[]{i, j + 1});
                }
                if (x > 1 && visited.add(Arrays.asList(i + 1, j))) {
                    queue.offer(new int[]{i + 1, j});
                }
            }
        }
        return new ArrayList(set);
    }
}