码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode面试题 16.11. 跳水板

时间:2020-07-08 01:02:55      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:etc   boa   ++   hashtable   ==   leetcode   length   oar   面试   

技术图片

暴力枚举即可,注意特判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. 跳水板

标签:etc   boa   ++   hashtable   ==   leetcode   length   oar   面试   

原文地址:https://www.cnblogs.com/linrj/p/13264433.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!