-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathReducing Dishes.cpp
40 lines (23 loc) · 1.05 KB
/
Reducing Dishes.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
34
35
36
37
38
39
40
/*
Solution by Rahul Surana
***********************************************************
A chef has collected data on the satisfaction level of his n dishes. Chef can cook any dish in 1 unit of time.
Like-time coefficient of a dish is defined as the time taken to cook that dish including previous dishes multiplied by its satisfaction level i.e.
time[i] * satisfaction[i].
Return the maximum sum of like-time coefficient that the chef can obtain after dishes preparation.
Dishes can be prepared in any order and the chef can discard some dishes to get this maximum value.
***********************************************************
*/
#include<bits/stdc++.h>
class Solution {
public:
int maxSatisfaction(vector<int>& satisfaction) {
sort(satisfaction.begin(),satisfaction.end());
int ans = 0, cs = 0;
for(int i = satisfaction.size()-1; i>=0; i--){
ans = max(ans,ans+cs+satisfaction[i]);
cs+=satisfaction[i];
}
return ans;
}
};