CF1475D.Cleaning the Phone

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Polycarp often uses his smartphone. He has already installed nn applications on it. Application with number ii takes up aia_i units of memory.

Polycarp wants to free at least mm 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 bib_i to each application:

  • bi=1b_i = 1 — regular application;
  • bi=2b_i = 2 — important application.

According to this rating system, his phone has b1+b2++bnb_1 + b_2 + \ldots + b_n convenience points.

Polycarp believes that if he removes applications with numbers i1,i2,,iki_1, i_2, \ldots, i_k , then he will free ai1+ai2++aika_{i_1} + a_{i_2} + \ldots + a_{i_k} units of memory and lose bi1+bi2++bikb_{i_1} + b_{i_2} + \ldots + b_{i_k} convenience points.

For example, if n=5n=5 , m=7m=7 , a=[5,3,2,1,4]a=[5, 3, 2, 1, 4] , b=[2,1,1,2,1]b=[2, 1, 1, 2, 1] , then Polycarp can uninstall the following application sets (not all options are listed below):

  • applications with numbers 1,41, 4 and 55 . In this case, it will free a1+a4+a5=10a_1+a_4+a_5=10 units of memory and lose b1+b4+b5=5b_1+b_4+b_5=5 convenience points;
  • applications with numbers 11 and 33 . In this case, it will free a1+a3=7a_1+a_3=7 units of memory and lose b1+b3=3b_1+b_3=3 convenience points.
  • applications with numbers 22 and 55 . In this case, it will free a2+a5=7a_2+a_5=7 memory units and lose b2+b5=2b_2+b_5=2 convenience points.

Help Polycarp, choose a set of applications, such that if removing them will free at least mm 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 tt ( 1t1041 \le t \le 10^4 ) — the number of test cases. Then tt test cases follow.

The first line of each test case contains two integers nn and mm ( 1n21051 \le n \le 2 \cdot 10^5 , 1m1091 \le m \le 10^9 ) — 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 nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 1ai1091 \le a_i \le 10^9 ) — the number of memory units used by applications.

The third line of each test case contains nn integers b1,b2,,bnb_1, b_2, \ldots, b_n ( 1bi21 \le b_i \le 2 ) — the convenience points of each application.

It is guaranteed that the sum of nn over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case, output on a separate line:

  • -1, if there is no set of applications, removing which will free at least mm 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 22 and 55 , freeing 77 units of memory. b2+b5=2b_2+b_5=2 .

In the second test case, by removing the only application, Polycarp will be able to clear only 22 of memory units out of the 33 needed.

In the third test case, it is optimal to remove applications with numbers 11 , 22 , 33 and 44 , freeing 1010 units of memory. b1+b2+b3+b4=6b_1+b_2+b_3+b_4=6 .

In the fourth test case, it is optimal to remove applications with numbers 11 , 33 and 44 , freeing 1212 units of memory. b1+b3+b4=4b_1+b_3+b_4=4 .

In the fifth test case, it is optimal to remove applications with numbers 11 and 22 , freeing 55 units of memory. b1+b2=3b_1+b_2=3 .

首页