302059: CF391C2. The Tournament
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
The Tournament
题目描述
This problem consists of three subproblems: for solving subproblem C1 you will receive 4 points, for solving subproblem C2 you will receive 4 points, and for solving subproblem C3 you will receive 8 points. Manao decided to pursue a fighter's career. He decided to begin with an ongoing tournament. Before Manao joined, there were $ n $ contestants in the tournament, numbered from $ 1 $ to $ n $ . Each of them had already obtained some amount of tournament points, namely the $ i $ -th fighter had $ p_{i} $ points. Manao is going to engage in a single fight against each contestant. Each of Manao's fights ends in either a win or a loss. A win grants Manao one point, and a loss grants Manao's opponent one point. For each $ i $ , Manao estimated the amount of effort $ e_{i} $ he needs to invest to win against the $ i $ -th contestant. Losing a fight costs no effort. After Manao finishes all of his fights, the ranklist will be determined, with $ 1 $ being the best rank and $ n+1 $ being the worst. The contestants will be ranked in descending order of their tournament points. The contestants with the same number of points as Manao will be ranked better than him if they won the match against him and worse otherwise. The exact mechanism of breaking ties for other fighters is not relevant here. Manao's objective is to have rank $ k $ or better. Determine the minimum total amount of effort he needs to invest in order to fulfill this goal, if it is possible.输入输出格式
输入格式
The first line contains a pair of integers $ n $ and $ k $ ( $ 1<=k<=n+1 $ ). The $ i $ -th of the following $ n $ lines contains two integers separated by a single space — $ p_{i} $ and $ e_{i} $ ( $ 0<=p_{i},e_{i}<=200000 $ ). The problem consists of three subproblems. The subproblems have different constraints on the input. You will get some score for the correct submission of the subproblem. The description of the subproblems follows. - In subproblem C1 (4 points), the constraint $ 1<=n<=15 $ will hold. - In subproblem C2 (4 points), the constraint $ 1<=n<=100 $ will hold. - In subproblem C3 (8 points), the constraint $ 1<=n<=200000 $ will hold.
输出格式
Print a single number in a single line — the minimum amount of effort Manao needs to use to rank in the top $ k $ . If no amount of effort can earn Manao such a rank, output number -1.
输入输出样例
输入样例 #1
3 2
1 1
1 4
2 2
输出样例 #1
3
输入样例 #2
2 1
3 2
4 0
输出样例 #2
-1
输入样例 #3
5 2
2 10
2 10
1 1
3 1
3 1
输出样例 #3
12