CF435A.Queue on Bus Stop

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

It's that time of the year when the Russians flood their countryside summer cottages (dachas) and the bus stop has a lot of people. People rarely go to the dacha on their own, it's usually a group, so the people stand in queue by groups.

The bus stop queue has nn groups of people. The ii -th group from the beginning has aia_{i} people. Every 3030 minutes an empty bus arrives at the bus stop, it can carry at most mm people. Naturally, the people from the first group enter the bus first. Then go the people from the second group and so on. Note that the order of groups in the queue never changes. Moreover, if some group cannot fit all of its members into the current bus, it waits for the next bus together with other groups standing after it in the queue.

Your task is to determine how many buses is needed to transport all nn groups to the dacha countryside.

输入格式

The first line contains two integers nn and mm (1<=n,m<=100)(1<=n,m<=100) . The next line contains nn integers: a1,a2,...,ana_{1},a_{2},...,a_{n} (1<=ai<=m)(1<=a_{i}<=m) .

输出格式

Print a single integer — the number of buses that is needed to transport all nn groups to the dacha countryside.

输入输出样例

  • 输入#1

    4 3
    2 3 2 1
    

    输出#1

    3
    
  • 输入#2

    3 4
    1 2 1
    

    输出#2

    1
    
首页