LeetCode面试题 16.11. 跳水板

Posted linrj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode面试题 16.11. 跳水板相关的知识,希望对你有一定的参考价值。

技术图片

暴力枚举即可,注意特判k为0的情况。

class Solution {
public:
    vector<int> divingBoard(int shorter, int longer, int k) {
        if(k == 0) {
            return {};
        }
        vector<int> res;
        set<int> hashTable;
        int currentLength;
        for(int i = 0; i <= k; ++i) {
            int j = k - i;
            currentLength = shorter * i + longer * j;
            if(hashTable.count(currentLength) == 0) {
                res.push_back(currentLength);
                hashTable.insert(currentLength);
            } 
        }
        sort(res.begin(), res.end());
        return res;
    }
};

以上是关于LeetCode面试题 16.11. 跳水板的主要内容,如果未能解决你的问题,请参考以下文章

面试题 16.11. 跳水板(leetcode)-7月8日

LeetCode面试题 16.11. 跳水板

7.8——面试题 16.11. 跳水板

程序员面试金典-面试题 16.11. 跳水板

JAVA面试题 跳水板

外观模式+LeetCode.面试题 16.11