CF1498B.Box Fitting

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given nn rectangles, each of height 11 . Each rectangle's width is a power of 22 (i. e. it can be represented as 2x2^x for some non-negative integer xx ).

You are also given a two-dimensional box of width WW . Note that WW may or may not be a power of 22 . Moreover, WW is at least as large as the width of the largest rectangle.

You have to find the smallest height of this box, such that it is able to fit all the given rectangles. It is allowed to have some empty space left in this box after fitting all the rectangles.

You cannot rotate the given rectangles to make them fit into the box. Moreover, any two distinct rectangles must not overlap, i. e., any two distinct rectangles must have zero intersection area.

See notes for visual explanation of sample input.

输入格式

The first line of input contains one integer tt ( 1t51031 \le t \le 5 \cdot 10^3 ) — the number of test cases. Each test case consists of two lines.

For each test case:

  • the first line contains two integers nn ( 1n1051 \le n \le 10^5 ) and WW ( 1W1091 \le W \le 10^9 );
  • the second line contains nn integers w1,w2,,wnw_1, w_2, \dots, w_n ( 1wi1061 \le w_i \le 10^6 ), where wiw_i is the width of the ii -th rectangle. Each wiw_i is a power of 22 ;
  • additionally, maxi=1nwiW\max\limits_{i=1}^{n} w_i \le W .

The sum of nn over all test cases does not exceed 10510^5 .

输出格式

Output tt integers. The ii -th integer should be equal to the answer to the ii -th test case — the smallest height of the box.

输入输出样例

  • 输入#1

    2
    5 16
    1 2 8 4 8
    6 10
    2 8 8 2 2 8

    输出#1

    2
    3

说明/提示

For the first test case in the sample input, the following figure shows one way to fit the given five rectangles into the 2D box with minimum height:

In the figure above, the number inside each rectangle is its width. The width of the 2D box is 1616 (indicated with arrow below). The minimum height required for the 2D box in this case is 22 (indicated on the left).

In the second test case, you can have a minimum height of three by keeping two blocks (one each of widths eight and two) on each of the three levels.

首页