#P4792. Transmitting Levels
Transmitting Levels
Transmitting Levels
题面翻译
题意:给你一个环形数组,让你求将这个数组分成 每段和 <= k 的最小段数。
题目描述
Optimizing the amount of data transmitted via a network is an important and interesting part of developing any network application.
In one secret game developed deep in the ZeptoLab company, the game universe consists of levels, located in a circle. You can get from level to levels and , also you can get from level to level and vice versa. The map of the -th level description size is bytes.
In order to reduce the transmitted traffic, the game gets levels as follows. All the levels on the server are divided into groups and each time a player finds himself on one of the levels of a certain group for the first time, the server sends all levels of the group to the game client as a single packet. Thus, when a player travels inside the levels of a single group, the application doesn't need any new information. Due to the technical limitations the packet can contain an arbitrary number of levels but their total size mustn't exceed bytes, where is some positive integer constant.
Usual situation is that players finish levels one by one, that's why a decision was made to split levels into groups so that each group was a continuous segment containing multiple neighboring levels (also, the group can have two adjacent levels, and ). Specifically, if the descriptions of all levels have the total weight of at most bytes, then they can all be united into one group to be sent in a single packet.
Determine, what minimum number of groups do you need to make in order to organize the levels of the game observing the conditions above?
As developing a game is a long process and technology never stagnates, it is yet impossible to predict exactly what value will take constant value limiting the packet size when the game is out. That's why the developers ask you to find the answer for multiple values of .
输入格式
The first line contains two integers , ( , ) — the number of levels in the game universe and the number of distinct values of that you need to process.
The second line contains integers ( ) — the sizes of the levels in bytes.
The next lines contain integers (), determining the values of constant , for which you need to determine the answer.
输出格式
For each value of from the input print on a single line integer ( ), determining the minimum number of groups to divide game levels into for transmission via network observing the given conditions.
样例 #1
样例输入 #1
6 3
2 4 2 1 3 2
7
4
6
样例输出 #1
2
4
3
提示
In the test from the statement you can do in the following manner.
- at you can divide into two segments: (note that one of the segments contains the fifth, sixth and first levels);
- at you can divide into four segments: ;
- at you can divide into three segments: .