zoukankan      html  css  js  c++  java
  • Codeforces Round #407 (Div. 2) A. Anastasia and pebbles模拟

    A. Anastasia and pebbles
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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.

    Examples
    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个石头。总共有n种石头,每种石头有wi个,如果这个人每天去公园捡一次石头,最少多少天捡完?

     题目解析:枚举第i种石头需要几天才能拿完,有可能需要“半天”,最后不要忘了把这个半天加上

    #include <bits/stdc++.h>
    
    using namespace std;
    
    int main()
    {
        int n, k, left = 0, cnt = 0,  s;
        scanf("%d%d", &n, &k);
        s = 2*k;
        for(int i = 0, w; i < n; i++){
            scanf("%d", &w);
             if(left) {
                cnt++;
                left = 0;
                w -= k;
                if(w <= 0) continue;
            }
            cnt += w/s;
            left = w%s;
            if(left == 0) continue;
            if(k < left && left < s) {
                left = 0;
                cnt++;
            }else left = 1;
        }
        printf("%d
    ", cnt+left);
        return 0;
    }
    View Code
  • 相关阅读:
    随时查询
    插入图片后R文件变红,报错“Error::app:mergeDebugResources'. > Some file crunching failed, see logs for detail”
    android 布局
    用SVN导入android项目时候没有导入default.properties这文件的解决方法
    Button的点击事件可以在XML文件中设置
    设置全屏有两种方式
    android 中加入的音乐文件有的时候没有播放。
    android spinner 调用xml里的数据
    刚刚申请了个博客发发感想
    .Net下WinForm换肤控件整理(转)
  • 原文地址:https://www.cnblogs.com/cshg/p/6647349.html
Copyright © 2011-2022 走看看