CF309C.Memory for Arrays
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 ai cells. You need to find memory for m arrays in your program. The j -th array takes 2bj 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<=106 ). The next line contains n integers a1,a2,...,an ( 1<=ai<=109 ). The next line contains m integers b1,b2,...,bm ( 1<=2bi<=109 ).
输出格式
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.