CF1374E1.Reading Books (easy version)
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Easy and hard versions are actually different problems, so read statements of both problems completely and carefully.
Summer vacation has started so Alice and Bob want to play and joy, but... Their mom doesn't think so. She says that they have to read some amount of books before all entertainments. Alice and Bob will read each book together to end this exercise faster.
There are n books in the family library. The i -th book is described by three integers: ti — the amount of time Alice and Bob need to spend to read it, ai (equals 1 if Alice likes the i -th book and 0 if not), and bi (equals 1 if Bob likes the i -th book and 0 if not).
So they need to choose some books from the given n books in such a way that:
- Alice likes at least k books from the chosen set and Bob likes at least k books from the chosen set;
- the total reading time of these books is minimized (they are children and want to play and joy as soon a possible).
The set they choose is the same for both Alice an Bob (it's shared between them) and they read all books together, so the total reading time is the sum of ti over all books that are in the chosen set.
Your task is to help them and find any suitable set of books or determine that it is impossible to find such a set.
输入格式
The first line of the input contains two integers n and k ( 1≤k≤n≤2⋅105 ).
The next n lines contain descriptions of books, one description per line: the i -th line contains three integers ti , ai and bi ( 1≤ti≤104 , 0≤ai,bi≤1 ), where:
- ti — the amount of time required for reading the i -th book;
- ai equals 1 if Alice likes the i -th book and 0 otherwise;
- bi equals 1 if Bob likes the i -th book and 0 otherwise.
输出格式
If there is no solution, print only one integer -1. Otherwise print one integer T — the minimum total reading time of the suitable set of books.
输入输出样例
输入#1
8 4 7 1 1 2 1 1 4 0 1 8 1 1 1 0 1 1 1 1 1 0 1 3 0 0
输出#1
18
输入#2
5 2 6 0 0 9 0 0 1 0 1 2 1 1 5 1 0
输出#2
8
输入#3
5 3 3 0 0 2 1 0 3 1 0 5 0 1 3 0 1
输出#3
-1