CodeForces - 789A  A - Anastasia and pebbles

本文介绍了一种关于如何有效收集不同类型鹅卵石的算法。通过合理规划每天的收集任务,确保了在限定条件下以最短时间完成全部收集的目标。


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 k pebbles in each pocket at the same time. There are n different pebble types in the park, and there are wi pebbles of the i-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.

Input

The first line contains two integers n and k (1 ≤ n ≤ 105, 1 ≤ k ≤ 109) — the number of different pebble types and number of pebbles Anastasia can place in one pocket.

The second line contains n integers w1, w2, ..., wn (1 ≤ wi ≤ 104) — number of pebbles of each type.

Output

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

Example
Input
3 2
2 3 4
Output
3
Input
5 4
3 1 8 9 7
Output
5
Note

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 8 pebbles of the third type.
  • In the second day she collects 8 pebbles of the fourth type.
  • In the third day she collects 3 pebbles of the first type and 1 pebble of the fourth type.
  • In the fourth day she collects 7 pebbles of the fifth type.
  • In the fifth day she collects 1 pebble of the second type.

题意:一个人在公园见鹅卵石,他有两袋子,每个袋子最多装k个,但是一个带字一次不能装不同堆的石头,给你多堆石头,问你最少要用多少天能捡完

si

思路:如果一堆小于k那么计半天,如果一堆大于k小于2*k记1天,如果一堆大于2*k,那么把他分为若干堆 ,一部分的个数为2*k,剩下的一堆为n%2*k,规则还是和前边一样,最后技术


计数,整天数+半天数,如果半天数为偶数那么计为  半天数/2  ,否则计为  半天数/2+1

ac代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;

int main(){
    int n,k,h; while(cin>>n>>k)
    {
        int p=0;
        int q=0;
        for(int i=1;i<=n;i++)
        {
            scanf("%d",&h);
            if(h<=k)
                p++;
            if(h>k&&h<=2*k)
                q++;
            if(h>2*k)
            {
                q+=h/(2*k);
                int d=h%(2*k);
                if(d<=k&&d>0)
                p++;
                if(d>k)
                    q++;

            }
        }
        if(p%2==0)
            cout<<q+p/2<<endl;
        else
            cout<<q+p/2+1<<endl;

    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值