Toy Box
74% Success9565 Attempts20 Points1s Time Limit256MB Memory1024 KB Max Code

You have \(N\) toys and \(M\) toy boxes. Initially all boxes are empty, and each box can contain only one toy. Each toy has a price and a box number assigned to it. If you want to choose a toy, you must put it in its assigned box, and of course that box can’t be used for any other toys. You need choose some toys (with their boxes) such that summation of their price is maximized.

Input Format

First line contains two integers \(N\) and \(M\), they are number of toys and number of toy boxes repectively. Each of the next \(N\) lines will contain information about each toy \(P_{i}\) and \(B_{i}\), where \(P_{i}\) is the price of i’th toy and \(B_{i}\) is the box number assigned to it.

\(1 <= N, M <= 100 \)

\(1 <= B_{i}<= M\)

\(1 <= P_{i}<= 100\)

Output Format

Print one integer, maximum summation of  price of toys that you can choose by following the problem description.

 

Examples
Input
5 6
3 1
4 2
1 1
2 3
1 6
Output
10
Explanation

You can get 10 by choosing all toys except the third one. Beacuse it can't be put in first box, which is already carrying first toy.

Please login to use the editor

You need to be logged in to access the code editor

Loading...

Please wait while we load the editor

Loading Editor...
Results