-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsolution.cpp
33 lines (33 loc) · 1000 Bytes
/
solution.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
* 64 / 64 test cases passed.
* Runtime: 16 ms
* Memory Usage: 14.8 MB
*/
class Solution {
public:
map<vector<int>, int> memo;
int shoppingOffers(vector<int>& price, vector<vector<int>>& special, vector<int>& needs) {
if (memo.count(needs)) return memo[needs];
int ans = 0;
for (int i = 0; i < price.size(); i++) {
ans += price[i] * needs[i];
}
for (int i = 0; i < special.size(); i++) {
vector<int> next(needs.begin(), needs.end());
bool valid = true;
for (int j = 0; j < price.size(); j++) {
if (special[i][j] > needs[j]) {
valid = false;
break;
}
next[j] -= special[i][j];
}
if (!valid) {
continue;
}
ans = min(ans, shoppingOffers(price, special, next) + special[i].back());
}
memo[needs] = ans;
return ans;
}
};