Connection Status:
Competition Arena > Pricing
SRM 149 · 2003-06-02 · by dgoodman · Brute Force, Simple Math
Class Name: Pricing
Return Type: int
Method Name: maxSales
Arg Types: (vector<int>)
Problem Statement

Problem Statement

Market differentiation in its simplest form is a system of charging different prices to different customers for the same product. To maximize the total sales revenue, we would like to charge each customer individually, charging the highest price that that customer would be willing to pay. Usually we have to divide the customers into a few groups, and charge the same price to everyone in a group (e.g. business class, economy class, etc.).

We have a list of all the potential customers for our product and the most that each customer is willing to pay. We have decided to differentiate them into four or fewer (non-overlapping) groups. Everyone within each group will be offered the same price. Our goal is to choose the groups and prices optimally to maximize our total sales revenue.

Create a class Pricing that contains a method maxSales that takes a int[] price containing the highest price that each potential customer is willing to pay, and returns the maximum sales revenue we can generate by differentiating our customers into four or fewer groups.

Constraints

  • price must contain between 1 and 50 elements inclusive
  • each element of price must be between 0 and 1000 inclusive
Examples
0)
{9,1,5,5,5,5,4,8,80}
Returns: 120

Charge 80 to the one customer willing to pay 80. Charge 8 to the 2 customers willing to pay 8 or 9. Charge 5 to the 4 customers willing to pay 5. Charge 4 to the one customer willing to pay 4. Total sales revenue = 1*80 + 2*8 + 4*5 + 1*4. (We can put the customer who is willing to pay 1 into any of these groups since he will not buy anything at these prices.)

1)
{17,50,2}
Returns: 69

We use just three groups, each containing one customer. We charge each customer the most she is willing to pay. Total sales revenue = 1*17 + 1*50 + 1*2

2)
{3,4,5,0,0,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,1,90,6}
Returns: 267
3)
{9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1}
Returns: 80
4)
{1000}
Returns: 1000
10)
{130,110,90,13,6,5,4,3,0}
Returns: 346

Charge each of the 4 customers willing to pay between 4 and 13 a price of 4, thereby getting a total of 16 from them. Then charge the most we can to each of the three customers who are willing to pay a lot. 4*4 + 90 + 110 + 130 = 346

Submissions are judged against all 21 archived test cases, of which 6 are shown here. Case numbers match the judge’s.

Coding Area

Language: C++17 · define a public class Pricing with a public method int maxSales(vector<int> price) · 21 test cases · 2 s / 256 MB per case

Submitting as anonymous