B. Vanya and Food Processor
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Vanya smashes potato in a vertical food processor. At each moment of time the height of the potato in the processor doesn't exceed hand the processor smashes k centimeters of potato each second. If there are less than k centimeters remaining, than during this second processor smashes all the remaining potato.

Vanya has n pieces of potato, the height of the i-th piece is equal to ai. He puts them in the food processor one by one starting from the piece number 1 and finishing with piece number n. Formally, each second the following happens:

  1. If there is at least one piece of potato remaining, Vanya puts them in the processor one by one, until there is not enough space for the next piece.
  2. Processor smashes k centimeters of potato (or just everything that is inside).

Provided the information about the parameter of the food processor and the size of each potato in a row, compute how long will it take for all the potato to become smashed.

Input

The first line of the input contains integers nh and k (1 ≤ n ≤ 100 000, 1 ≤ k ≤ h ≤ 109) — the number of pieces of potato, the height of the food processor and the amount of potato being smashed each second, respectively.

The second line contains n integers ai (1 ≤ ai ≤ h) — the heights of the pieces.

Output

Print a single integer — the number of seconds required to smash all the potatoes following the process described in the problem statement.

Examples
input
5 6 3
5 4 3 2 1
output
5
input
5 6 3
5 5 5 5 5
output
10
input
5 6 3
1 2 1 1 1
output
2
Note

Consider the first sample.

  1. First Vanya puts the piece of potato of height 5 into processor. At the end of the second there is only amount of height 2 remaining inside.
  2. Now Vanya puts the piece of potato of height 4. At the end of the second there is amount of height 3 remaining.
  3. Vanya puts the piece of height 3 inside and again there are only 3 centimeters remaining at the end of this second.
  4. Vanya finally puts the pieces of height 2 and 1 inside. At the end of the second the height of potato in the processor is equal to 3.
  5. During this second processor finally smashes all the remaining potato and the process finishes.

In the second sample, Vanya puts the piece of height 5 inside and waits for 2 seconds while it is completely smashed. Then he repeats the same process for 4 other pieces. The total time is equal to 2·5 = 10 seconds.

In the third sample, Vanya simply puts all the potato inside the processor and waits 2 seconds.

题解代码:

 #include <iostream>
#include <stdio.h>
using namespace std;
typedef long long ll;
ll i,n,h,ans,x,cur_h,k;
int main()
{
cin >> n >> h >> k;
ans = ;
cur_h = ;
for (i = ; i < n; i++)
{
scanf("%I64d", &x);
if (cur_h + x <= h)
cur_h += x;
else
ans++, cur_h = x;
ans += cur_h/k;
cur_h %= k;
}
ans += cur_h/k;
cur_h %= k;
ans += (cur_h>);
cout << ans << endl;
return ;
}

最新文章

  1. win7搭建双系统ubuntu
  2. SublimeText2 快捷键一览表
  3. JAVA 重复提交
  4. 简易线程池Thread Pool
  5. 用xutils3.0进行下载
  6. xargs命令
  7. createElement创建标签及appendChild添加到元素的后面
  8. TDD(测试驱动开发)培训录(转)
  9. Linux LVS Nginx HAProxy 优缺点
  10. Nightmare
  11. Spring+Mybatis+jQuery.Pagination.js异步分页及JsonConfig的使用
  12. Cocos2d-x 开发手记
  13. 【Unity--Apwork框架】AOP编程--拦截,用于缓存和异常处理(Unity框架的拦截注入-Interception)
  14. 在iis中mantisbt配置过程
  15. bzoj3043
  16. Struts2 处理表单重复提交
  17. for 的多重循环--java
  18. 分珠(dfs+并查集)
  19. video.js支持m3u8格式直播
  20. 强化学习(八)价值函数的近似表示与Deep Q-Learning

热门文章

  1. Leetcode_num2_Maximum Depth of Binary Tree
  2. python--简易员工信息系统编写
  3. Machine Learning: 一部气势恢宏的人工智能发展史
  4. 数据仓库建模与ETL的实践技巧(转载)
  5. JSP页面的编码设置(转载)
  6. Xcode 6 的新增特性
  7. sanic官方文档解析之Example(二)
  8. SAM4E单片机之旅——11、UART之PDC收发
  9. CSU - 1530 Gold Rush —— 二进制
  10. jinja 多值合并