CF 789A Anastasia and pebbles 贪心

本文提供 CodeForces 789A 题目的解题思路及实现代码。该题目要求计算将多种颜色的石头分别放入两个口袋所需的最少天数,每个口袋每天最多可以放入 k 种相同颜色的石头。通过贪心算法解决此问题。
摘要由CSDN通过智能技术生成

题目链接:http://codeforces.com/contest/789/problem/A
题意:n种不同颜色的石头,你有2个口袋,每个最多每天装k个颜色相同的石头,问要把n个石头装完需要多少天。
解法:XJB贪一贪就好了。

//CF 789A

#include <bits/stdc++.h>
using namespace std;
const int maxn = 1e5+10;
int n, k, a[maxn];

int main()
{
    scanf("%d%d", &n, &k);
    for(int i = 1; i <= n; i++) scanf("%d", &a[i]);
    sort(a+1, a+n+1, greater<int>());
    int ans = 0, last = 0;
    for(int i = 1; i <= n; i++){
        ans += a[i] / (2*k);
        int cur = a[i] % (2*k);
        if(cur == 0) continue;
        if(cur > k){
            ans++;
            continue;
        }
        else{
            if(last){
                ans++;
                last=0;
            }
            else{
                last = cur;
            }
        }
    }
    if(last) ans++;
    cout << ans << endl;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值