【leetcode】【easy】【每日一題】面試題 17.16. The Masseuse LCCI

面試題 17.16. The Masseuse LCCI

A popular masseuse receives a sequence of back-to-back appointment requests and is debating which ones to accept. She needs a break between appointments and therefore she cannot accept any adjacent requests. Given a sequence of back-to-back appoint­ ment requests, find the optimal (highest total booked minutes) set the masseuse can honor. Return the number of minutes.

Note: This problem is slightly different from the original one in the book.

Example 1:

Input:  [1,2,3,1]
Output:  4
Explanation:  Accept request 1 and 3, total minutes = 1 + 3 = 4

Example 2:

Input:  [2,7,9,3,1]
Output:  12
Explanation:  Accept request 1, 3 and 5, total minutes = 2 + 9 + 1 = 12

Example 3:

Input:  [2,1,4,5,3,1,1,3]
Output:  12
Explanation:  Accept request 1, 3, 5 and 8, total minutes = 2 + 4 + 3 + 3 = 12

題目鏈接:https://leetcode-cn.com/problems/the-masseuse-lcci/

 

思路

和匪徒問題一個思路,對當前值取和不取 兩個值的dp。

class Solution {
public:
    int massage(vector<int>& nums) {
        int len = nums.size();
        if(len==0) return 0;
        if( len==1) return nums[0];
        int no = 0, yes = nums[0];
        for(int i=1; i<len; ++i){
            int no_tmp = max(yes, no);
            yes = no+nums[i];
            no = no_tmp;
        }
        return max(yes,no);
    }
};

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章