CF789A.Anastasia and pebbles

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Anastasia loves going for a walk in Central Uzhlyandian Park. But she became uninterested in simple walking, so she began to collect Uzhlyandian pebbles. At first, she decided to collect all the pebbles she could find in the park.

She has only two pockets. She can put at most kk pebbles in each pocket at the same time. There are nn different pebble types in the park, and there are wiw_{i} pebbles of the ii -th type. Anastasia is very responsible, so she never mixes pebbles of different types in same pocket. However, she can put different kinds of pebbles in different pockets at the same time. Unfortunately, she can't spend all her time collecting pebbles, so she can collect pebbles from the park only once a day.

Help her to find the minimum number of days needed to collect all the pebbles of Uzhlyandian Central Park, taking into consideration that Anastasia can't place pebbles of different types in same pocket.

输入格式

The first line contains two integers nn and kk ( 1<=n<=1051<=n<=10^{5} , 1<=k<=1091<=k<=10^{9} ) — the number of different pebble types and number of pebbles Anastasia can place in one pocket.

The second line contains nn integers w1,w2,...,wnw_{1},w_{2},...,w_{n} ( 1<=wi<=1041<=w_{i}<=10^{4} ) — number of pebbles of each type.

输出格式

The only line of output contains one integer — the minimum number of days Anastasia needs to collect all the pebbles.

输入输出样例

  • 输入#1

    3 2
    2 3 4
    

    输出#1

    3
    
  • 输入#2

    5 4
    3 1 8 9 7
    

    输出#2

    5
    

说明/提示

In the first sample case, Anastasia can collect all pebbles of the first type on the first day, of second type — on the second day, and of third type — on the third day.

Optimal sequence of actions in the second sample case:

  • In the first day Anastasia collects 88 pebbles of the third type.
  • In the second day she collects 88 pebbles of the fourth type.
  • In the third day she collects 33 pebbles of the first type and 11 pebble of the fourth type.
  • In the fourth day she collects 77 pebbles of the fifth type.
  • In the fifth day she collects 11 pebble of the second type.
首页