CF727F Polycarp's problems

Description

Polycarp is an experienced participant in Codehorses programming contests. Now he wants to become a problemsetter. He sent to the coordinator a set of $ n $ problems. Each problem has it's quality, the quality of the $ i $ -th problem is $ a_{i} $ ( $ a_{i} $ can be positive, negative or equal to zero). The problems are ordered by expected difficulty, but the difficulty is not related to the quality in any way. The easiest problem has index $ 1 $ , the hardest problem has index $ n $ . The coordinator's mood is equal to $ q $ now. After reading a problem, the mood changes by it's quality. It means that after the coordinator reads a problem with quality $ b $ , the value $ b $ is added to his mood. The coordinator always reads problems one by one from the easiest to the hardest, it's impossible to change the order of the problems. If after reading some problem the coordinator's mood becomes negative, he immediately stops reading and rejects the problemset. Polycarp wants to remove the minimum number of problems from his problemset to make the coordinator's mood non-negative at any moment of time. Polycarp is not sure about the current coordinator's mood, but he has $ m $ guesses "the current coordinator's mood $ q=b_{i} $ ". For each of $ m $ guesses, find the minimum number of problems Polycarp needs to remove so that the coordinator's mood will always be greater or equal to $ 0 $ while he reads problems from the easiest of the remaining problems to the hardest.

Input Format

The first line of input contains two integers $ n $ and $ m $ ( $ 1

Output Format

Print $ m $ lines, in $ i $ -th line print single integer — the answer to the problem with $ q=b_{i} $ .