cf 789 B


 
 

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. 

细心模拟就好,还要注意精度long long

#include <cstdio>  
#include <iostream>  
#include <cmath>  
#include <set>  
  
using namespace std;  
  
typedef long long ll;  
ll b,q,l,m;  
set<ll>s;  
ll a;  
  
int main() {  
    cin >> b >> q >> l >> m;  
    while(m--) {  
        cin >> a;  
        s.insert(a);  
    }  
    if(abs(b) > l) {  
        cout << "0" << endl;  
        return 0;  
    }  
    if(b == 0) {  
        if(s.find(b) == s.end()) {  
            cout << "inf" << endl;  
        } else {  
            cout << "0" << endl;  
        }  
        return 0;  
    }  
    if(q == 0) {  
        if(s.find(0) == s.end()) {  
            cout << "inf" << endl;  
        } else if(s.find(b) == s.end()) {  
            cout << "1" << endl;  
        } else {  
            cout << "0" << endl;  
        }  
        return 0;  
    }  
    if(q == 1) {  
        if(s.find(b) == s.end()) {  
            cout << "inf" << endl;  
        } else {  
            cout << "0" << endl;  
        }  
        return 0;  
    }  
    if(q == -1) {  
        if(s.find(b) == s.end() || s.find(-b) == s.end()) {  
            cout << "inf" << endl;  
        }else{  
            cout << "0" << endl;  
        }  
        return 0;  
    }  
    int cnt = 0;  
    while(abs(b) <= l){  
        if(s.find(b) == s.end()){  
            cnt++;  
        }  
        b *= q;  
    }  
    cout << cnt << endl;  
    return 0;  
} 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值