Leetcode 970. Powerful Integers 970. 強整數

970. 強整數
給定兩個正整數 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]

題解的C++版,發現題解的18是錯的,2的18次方不夠1000000的,坑人呀,應該是20;
主要還學習一個set轉vector的方法。

class Solution {
public:
    vector<int> powerfulIntegers(int x, int y, int bound) {
        set<int> res;
        for(int i=0;i<20&&pow(x,i)<=bound;i++){
            for(int j=0;j<20&&pow(y,j)<=bound;j++){
                int v=int(pow(x,i))+int(pow(y,j));
                if(v<=bound) res.insert(v);        
            }
        }
        vector<int> res2;
        res2.assign(res.begin(), res.end());
        return res2;
    }
};

評論裏面的其他解法:

class Solution {
public:
    vector<int> powerfulIntegers(int x, int y, int bound) {
        set<int> res;
        for(int i=1;i<bound;i*=x){
            for(int j=1;i+j<=bound;j*=y){
                res.insert(i+j);
                if(y==1) break;
            }
            if(x==1) break;
        }
        vector<int> res2;
        res2.assign(res.begin(), res.end());
        return res2;
    }
};
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章