您的位置:首页 > Web前端

leetcode 638. Shopping Offers 最佳购物优惠+十分典型深度优先遍历DFS

2017-12-21 09:53 447 查看
In LeetCode Store, there are some kinds of items to sell. Each item has a price.

However, there are some special offers, and a special offer consists of one or more different kinds of items with a sale price.

You are given the each item’s price, a set of special offers, and the number we need to buy for each item. The job is to output the lowest price you have to pay for exactly certain items as given, where you could make optimal use of the special offers.

Each special offer is represented in the form of an array, the last number represents the price you need to pay for this special offer, other numbers represents how many specific items you could get if you buy this offer.

You could use any of special offers as many times as you want.

Example 1:

Input: [2,5], [[3,0,5],[1,2,10]], [3,2]

Output: 14

Explanation:

There are two kinds of items, A and B. Their prices are 2and2and5 respectively.

In special offer 1, you can pay 5for3Aand0BInspecialoffer2,youcanpay5for3Aand0BInspecialoffer2,youcanpay10 for 1A and 2B.

You need to buy 3A and 2B, so you may pay 10 for 1A and 2B (special offer #2), and10 for 1A and 2B (special offer #2), and4 for 2A.

Example 2:

Input: [2,3,4], [[1,1,0,4],[2,2,1,9]], [1,2,1]

Output: 11

Explanation:

The price of A is 2,and2,and3 for B, 4forC.Youmaypay4forC.Youmaypay4 for 1A and 1B, and 9for2A,2Band1C.Youneedtobuy1A,2Band1C,soyoumaypay9for2A,2Band1C.Youneedtobuy1A,2Band1C,soyoumaypay4 for 1A and 1B (special offer #1), and 3for1B,3for1B,4 for 1C.

You cannot add more items, though only $9 for 2A ,2B and 1C.

Note:

There are at most 6 kinds of items,
c833
100 special offers.

For each item, you need to buy at most 6 of them.

You are not allowed to buy more items than you want, even if that would lower the overall price.

本题题意很简单,就是在一系列的购物优惠中选取最佳的策略,以获取少的花费

直接递归即可,很棒的做法

代码如下:

#include <iostream>
#include <vector>
#include <map>
#include <unordered_map>
#include <set>
#include <unordered_set>
#include <queue>
#include <stack>
#include <string>
#include <climits>
#include <algorithm>
#include <sstream>
#include <functional>
#include <bitset>
#include <numeric>
#include <cmath>
#include <regex>
#include <iomanip>
#include <cstdlib>
#include <ctime>
using namespace std;

class Solution {
public:
int shoppingOffers(vector<int>& p, vector<vector<int>>& sp, vector<int>& need)
{
int minsum = 0;
for (int i = 0; i < p.size(); i++)
minsum += p[i] * need[i];

for (auto s : sp)
{
bool can = true;
for (int i = 0; i < need.size(); i++)
{
if (need[i] < s[i])
{
can = false;
break;
}
}

if (can)
{
for (int i = 0; i < need.size(); i++)
need[i] -= s[i];
minsum = min(minsum, s[need.size()] + shoppingOffers(p, sp, need));
for (int i = 0; i < need.size(); i++)
need[i] += s[i];
}

}
return minsum;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐