Get Maximum Sum (a.k.a. Find Max Health Sum :P
Note π - might be a sister problem of π¦₯ Get Max Sum
Amazon is building a new data center with n servers of different types. The health and type of each server are represented in the arrays health and serverType. The developers need to build a server facility with a maximum of k distinct types of servers and the sum of their health should be maximized.
Given arrays health and serverType, find the maximum sum of the health for up to k types of servers.
Complete the function getMaximumSum in the editor.
getMaximumSum has the following parameters:
int health[n]: the health of each serverint serverType[n]: the type of each serverint k: the maximum number of distinct types
Returns
long int: the maximum sum of health of the selected servers
Thanks a lot to Spike β our trusted authority! π₯°
1Example 1

k = 1, all selected servers must be the same type. The better option is to select type 2 servers. The maximum sum of health for type 2 servers is 5 + 6 = 11. Return 11.2Example 2
k = 2, the best option is to select servers of types 1 and 5. The maximum sum of health for these types is 2 + 3 + 10 = 15 for type 1 and 10 for type 5, which adds up to 20. Return 20.Constraints
Limits and guarantees your solution can rely on.
1 β€ k β€ n β€ 10^51 β€ health[i] β€ 10^91 β€ serverType[i] β€ n