301626: CF309C. Memory for Arrays

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Memory for Arrays

题意翻译

你有 $n$ 个背包和 $m$ 个物品,第 $i$ 个背包容量为 $a_i$,第 $j$ 个物品体积为 $2^{b_j}$。问最多能把多少个物品装入这 $n$ 个背包使得每个背包中物品的体积和不超过其容量。

题目描述

You get to work and turn on the computer. You start coding and give little thought to the RAM role in the whole process. In this problem your task is to solve one of the problems you encounter in your computer routine. We'll consider the RAM as a sequence of cells that can contain data. Some cells already contain some data, some are empty. The empty cells form the so-called memory clusters. Thus, a memory cluster is a sequence of some consecutive empty memory cells. You have exactly $ n $ memory clusters, the $ i $ -th cluster consists of $ a_{i} $ cells. You need to find memory for $ m $ arrays in your program. The $ j $ -th array takes $ 2^{b_{j}} $ consecutive memory cells. There possibly isn't enough memory for all $ m $ arrays, so your task is to determine what maximum number of arrays can be located in the available memory clusters. Of course, the arrays cannot be divided between the memory clusters. Also, no cell can belong to two arrays.

输入输出格式

输入格式


The first line of the input contains two integers $ n $ and $ m $ ( $ 1<=n,m<=10^{6} $ ). The next line contains $ n $ integers $ a_{1},a_{2},...,a_{n} $ ( $ 1<=a_{i}<=10^{9} $ ). The next line contains $ m $ integers $ b_{1},b_{2},...,b_{m} $ ( $ 1<=2^{b_{i}}<=10^{9} $ ).

输出格式


Print a single integer — the answer to the problem.

输入输出样例

输入样例 #1

5 3
8 4 3 2 2
3 2 2

输出样例 #1

2

输入样例 #2

10 6
1 1 1 1 1 1 1 1 1 1
0 0 0 0 0 0

输出样例 #2

6

说明

In the first example you are given memory clusters with sizes 8, 4, 3, 2, 2 and arrays with sizes 8, 4, 4. There are few ways to obtain an answer equals 2: you can locate array with size 8 to the cluster with size 8, and one of the arrays with size 4 to the cluster with size 4. Another way is to locate two arrays with size 4 to the one cluster with size 8. In the second example you are given 10 memory clusters with size 1 and 6 arrays with size 1. You can choose any 6 clusters and locate all given arrays to them.

Input

题意翻译

你有 $n$ 个背包和 $m$ 个物品,第 $i$ 个背包容量为 $a_i$,第 $j$ 个物品体积为 $2^{b_j}$。问最多能把多少个物品装入这 $n$ 个背包使得每个背包中物品的体积和不超过其容量。

加入题单

算法标签: