Codeforces 985C Liebig's Barrels(贪心)

题目链接:Liebig’s Barrels

题意

总共有 m=n×k m = n × k 个木板,第 i i 个木板的长度为 ai,要用这 m m 个木板做成 n 个桶,每个桶由 k k 个木板组成,每个桶的容积由构成这个桶的最短木板决定,要求所有的桶的容积差距不能超过 l,问所有桶的最大容积和。

输入

第一行为 3 3 个整数 n,k,l (1n,k105,1n×k105,0l109),第二行为 n×k n × k 个整数 a1,a2,,an×k (1ai109) a 1 , a 2 , ⋯ , a n × k   ( 1 ≤ a i ≤ 10 9 )

输出

输出所有木桶的最大容积和,如果无法达到要求,则输出 0 0

样例

输入
4 2 1
2 2 1 2 3 2 2 3
输出
7
提示
可以按照这样的方式来造木桶:[1,2],[2,2],[2,3],[2,3]

输入
2 1 0
10 10
输出
20
提示
可以按照这样的方式来造木桶: [10],[10] [ 10 ] , [ 10 ]
输入
1 2 1
5 2
输出
2
提示
可以按照这样的方式来造木桶: [2,5] [ 2 , 5 ]
输入
3 2 1
1 2 3 4 5 6
输出
0
提示
无论如何造木桶,任意两个木桶之间最大差距的最小值为 2 2 ,无法达到要求。

题解

由于最短的木板一定是其中某个木桶的容积,所以先将与最短的板长度差小于等于 l 的放到一起从小到大排序,每 k k 个板构成一个桶,且保证剩下的板子足够构成 n 个桶,这样贪心下去,就能得到答案。

过题代码

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <climits>
#include <cstring>
#include <string>
#include <vector>
#include <list>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <bitset>
#include <algorithm>
#include <functional>
#include <iomanip>
using namespace std;

#define LL long long
const int maxn = 100000 + 100;
int n, k, l;
LL ans;
int *it;
int num[maxn];
priority_queue<int, vector<int>, greater<int> > que;

int main() {
    #ifdef LOCAL
    freopen("test.txt", "r", stdin);
//    freopen("test1.out", "w", stdout);
    #endif // LOCAL
    ios::sync_with_stdio(false);

    while(scanf("%d%d%d", &n, &k, &l) != EOF) {
        ans = 0;
        for(int i = 0; i < n * k; ++i) {
            scanf("%d", &num[i]);
        }
        sort(num, num + n * k);
        it = upper_bound(num, num + n * k, num[0] + l);
        int cnt = it - num;
        if(cnt < n) {
            printf("0\n");
            continue;
        }
        int Index = 0;
        int Chose = 0;
        int Left = cnt;
        while(Index < cnt) {
            ans += num[Index];
            ++Chose;
            for(int i = 0; i < k; ++i) {
                ++Index;
                --Left;
                if(n - Chose >= Left) {
                    break;
                }
            }
        }
        printf("%I64d\n", ans);
    }

    return 0;
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值