CF1475D.Cleaning the Phone
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Polycarp often uses his smartphone. He has already installed n applications on it. Application with number i takes up ai units of memory.
Polycarp wants to free at least m units of memory (by removing some applications).
Of course, some applications are more important to Polycarp than others. He came up with the following scoring system — he assigned an integer bi to each application:
- bi=1 — regular application;
- bi=2 — important application.
According to this rating system, his phone has b1+b2+…+bn convenience points.
Polycarp believes that if he removes applications with numbers i1,i2,…,ik , then he will free ai1+ai2+…+aik units of memory and lose bi1+bi2+…+bik convenience points.
For example, if n=5 , m=7 , a=[5,3,2,1,4] , b=[2,1,1,2,1] , then Polycarp can uninstall the following application sets (not all options are listed below):
- applications with numbers 1,4 and 5 . In this case, it will free a1+a4+a5=10 units of memory and lose b1+b4+b5=5 convenience points;
- applications with numbers 1 and 3 . In this case, it will free a1+a3=7 units of memory and lose b1+b3=3 convenience points.
- applications with numbers 2 and 5 . In this case, it will free a2+a5=7 memory units and lose b2+b5=2 convenience points.
Help Polycarp, choose a set of applications, such that if removing them will free at least m units of memory and lose the minimum number of convenience points, or indicate that such a set does not exist.
输入格式
The first line contains one integer t ( 1≤t≤104 ) — the number of test cases. Then t test cases follow.
The first line of each test case contains two integers n and m ( 1≤n≤2⋅105 , 1≤m≤109 ) — the number of applications on Polycarp's phone and the number of memory units to be freed.
The second line of each test case contains n integers a1,a2,…,an ( 1≤ai≤109 ) — the number of memory units used by applications.
The third line of each test case contains n integers b1,b2,…,bn ( 1≤bi≤2 ) — the convenience points of each application.
It is guaranteed that the sum of n over all test cases does not exceed 2⋅105 .
输出格式
For each test case, output on a separate line:
- -1, if there is no set of applications, removing which will free at least m units of memory;
- the minimum number of convenience points that Polycarp will lose if such a set exists.
输入输出样例
输入#1
5 5 7 5 3 2 1 4 2 1 1 2 1 1 3 2 1 5 10 2 3 2 3 2 1 2 1 2 1 4 10 5 1 3 4 1 2 1 2 4 5 3 2 1 2 2 1 2 1
输出#1
2 -1 6 4 3
说明/提示
In the first test case, it is optimal to remove applications with numbers 2 and 5 , freeing 7 units of memory. b2+b5=2 .
In the second test case, by removing the only application, Polycarp will be able to clear only 2 of memory units out of the 3 needed.
In the third test case, it is optimal to remove applications with numbers 1 , 2 , 3 and 4 , freeing 10 units of memory. b1+b2+b3+b4=6 .
In the fourth test case, it is optimal to remove applications with numbers 1 , 3 and 4 , freeing 12 units of memory. b1+b3+b4=4 .
In the fifth test case, it is optimal to remove applications with numbers 1 and 2 , freeing 5 units of memory. b1+b2=3 .