Codeforces 985C 贪心

本文介绍了一种算法,用于解决由n*k块木板拼接成n个木桶的问题,要求每个木桶使用k块木板且任意两桶间的容量差不超过l,目标是求得所有木桶的最大总容量。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

C. Liebig's Barrels
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

You have m = n·k wooden staves. The i-th stave has length ai. You have to assemble n barrels consisting of k staves each, you can use any k staves to construct a barrel. Each stave must belong to exactly one barrel.

Let volume vj of barrel j be equal to the length of the minimal stave in it.

You want to assemble exactly n barrels with the maximal total sum of volumes. But you have to make them equal enough, so a difference between volumes of any pair of the resulting barrels must not exceed l, i.e. |vx - vy| ≤ l for any 1 ≤ x ≤ n and 1 ≤ y ≤ n.

Print maximal total sum of volumes of equal enough barrels or 0 if it's impossible to satisfy the condition above.

Input

The first line contains three space-separated integers nk and l (1 ≤ n, k ≤ 1051 ≤ n·k ≤ 1050 ≤ l ≤ 109).

The second line contains m = n·k space-separated integers a1, a2, ..., am (1 ≤ ai ≤ 109) — lengths of staves.

Output

Print single integer — maximal total sum of the volumes of barrels or 0 if it's impossible to construct exactly n barrels satisfying the condition |vx - vy| ≤ l for any 1 ≤ x ≤ n and 1 ≤ y ≤ n.

Examples
input
Copy
4 2 1
2 2 1 2 3 2 2 3
output
Copy
7
input
Copy
2 1 0
10 10
output
Copy
20
input
Copy
1 2 1
5 2
output
Copy
2
input
Copy
3 2 1
1 2 3 4 5 6
output
Copy
0
Note

In the first example you can form the following barrels: [1, 2][2, 2][2, 3][2, 3].

In the second example you can form the following barrels: [10][10].

In the third example you can form the following barrels: [2, 5].

In the fourth example difference between volumes of barrels in any partition is at least 2 so it is impossible to make barrels equal enough.

题意:木桶容量定义为最短的木板的长度,,用n*k块木板拼成n个木桶,要求每个木桶用k块木板,任意两个木桶容量差距小于l,求能拼成的木桶的最大容积和

思路:贪心,排序之后找到离最短木板差距小于等于l的最长木板,然后尽可能选择长的木板,具体过程见代码。

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
ll a[100005];

int main()
{
    ll n,k,l;
    scanf("%I64d%I64d%I64d",&n,&k,&l);
    for(int i=0; i<n*k; i++){
        scanf("%I64d",&a[i]);
    }
    sort(a,a+n*k);
    if(a[n-1]-a[0]>l){ //无法拼出n个桶
        cout<<0<<endl;
        return 0;
    }
    ll tail = lower_bound(a,a+n*k,a[0]+1+l)-a, pos = 0;     //tail作为可以作为最短木板的范围,pos为当前木板的位置
    ll cnt = tail-n;
    ll res = 0;
    for(int i=0; i<n; i++){
        res += a[pos];
        if(cnt >= k-1){    //若仍有大于k-1块木板,则用这k-1块木板拼成桶
            cnt -= k-1;
            pos += k;
        }
        else if(cnt){
            pos += cnt+1;
            cnt = 0;
        }
        else
            pos++;      //每次往后取一块木板
    }
    printf("%I64d\n",res);
    return 0;
}

### Codeforces Problem 1400C 解决方案 对于编号为1400C的编程题,在解决过程中可以采用贪心算法来处理字符串匹配问题。该方法的核心在于通过遍历输入字符串并维护两个指针分别指向模式串的不同位置,以此实现高效匹配[^1]。 具体来说: - 初始化两个变量 `i` 和 `j` 分别用于追踪主串和模式串的位置。 - 遍历整个主串的同时尝试找到尽可能多的有效字符组合使得其能够按照给定条件形成目标子序列。 - 如果当前字符满足特定规则,则移动模式串对应的索引;否则继续检查下一个可能的位置直到完成全部扫描工作为止。 ```cpp #include <bits/stdc++.h> using namespace std; bool canFormSubsequence(const string& mainStr, const string& pattern) { int i = 0; // Index for mainStr int j = 0; // Index for pattern while (i < mainStr.size() && j < pattern.size()) { if ((mainStr[i] - 'a' + 1) % 2 == (pattern[j] - 'a' + 1)) { // Check condition based on problem statement ++j; } ++i; } return j == pattern.size(); } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int t; cin >> t; while(t--) { string s, p; cin >> s >> p; cout << (canFormSubsequence(s, p) ? "YES\n" : "NO\n"); } return 0; } ``` 此代码实现了上述逻辑,并针对多个测试案例进行了优化以提高执行效率。值得注意的是,这里假设输入数据已经过适当预处理,因此可以直接读取而无需额外验证或清理操作。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值