A14074 | Box Fitting
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given $n$ rectangles, each of height $1$ . Each rectangle's width is a power of $2$ (i. e. it can be represented as $2^x$ for some non-negative integer $x$ ).
You are also given a two-dimensional box of width $W$ . Note that $W$ may or may not be a power of $2$ . Moreover, $W$ 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.
You are also given a two-dimensional box of width $W$ . Note that $W$ may or may not be a power of $2$ . Moreover, $W$ 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 $t$ ( $1 \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 $n$ ( $1 \le n \le 10^5$ ) and $W$ ( $1 \le W \le 10^9$ );
- the second line contains $n$ integers $w_1, w_2, \dots, w_n$ ( $1 \le w_i \le 10^6$ ), where $w_i$ is the width of the $i$ -th rectangle. Each $w_i$ is a power of $2$ ;
- additionally, $\max\limits_{i=1}^{n} w_i \le W$ .
The sum of $n$ over all test cases does not exceed $10^5$ .
For each test case:
- the first line contains two integers $n$ ( $1 \le n \le 10^5$ ) and $W$ ( $1 \le W \le 10^9$ );
- the second line contains $n$ integers $w_1, w_2, \dots, w_n$ ( $1 \le w_i \le 10^6$ ), where $w_i$ is the width of the $i$ -th rectangle. Each $w_i$ is a power of $2$ ;
- additionally, $\max\limits_{i=1}^{n} w_i \le W$ .
The sum of $n$ over all test cases does not exceed $10^5$ .
输出格式
Output $t$ integers. The $i$ -th integer should be equal to the answer to the $i$ -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 $16$ (indicated with arrow below). The minimum height required for the 2D box in this case is $2$ (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.
In the figure above, the number inside each rectangle is its width. The width of the 2D box is $16$ (indicated with arrow below). The minimum height required for the 2D box in this case is $2$ (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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?