当前位置:   article > 正文

CF-Educational Codeforces Round 44 (Rated for Div. 2)-C-Liebig's Barrels_liebig's barrelscsdn

liebig's barrelscsdn

ACM模版

描述

描述

题解

二分加贪心。先确保前 桶可以分配为相邻的 个,并且保证 ,这样就能保证所有的差不大于 ,如果不能保证这个条件,说明此时已经无法分配相邻的 个了,而需要将剩下的没有组装的桶先分配一个满足条件的最大的,然后剩下的再分给这些没有组装完成的桶(当然这部分不用代码写出来)。

代码

#include <iostream>
#include <algorithm>
#include <cstdio>

using namespace std;

const int MAXN = 1e5 + 10;

int n, k, l;
int a[MAXN];

int main(int argc, const char * argv[])
{
    cin >> n >> k >> l;

    int tmp = n * k;
    for (int i = 1; i <= tmp; i++)
    {
        scanf("%d", a + i);
    }
    sort(a + 1, a + tmp + 1);

    if (a[n] - a[1] > l)
    {
        cout << "0\n";
    }
    else
    {
        long long ans = 0;
        for (int i = 1, j = n - 1; i <= n; i++, j--)
        {
            if (a[i * k + j] - a[1] <= l)
            {
                ans += a[(i - 1) * k + 1];
            }
            else
            {
                int p = (int)(upper_bound(a + (i - 1) * k + 1, a + tmp + 1, a[1] + l) - a - 1);

                ans += a[(i - 1) * k + 1];
                while (j--)
                {
                    ans += a[p--];
                }
                break;
            }
        }

        cout << ans << '\n';
    }

    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/912654
推荐阅读
相关标签
  

闽ICP备14008679号