POJ2709 - Painter (贪心)

3 篇文章 0 订阅

题目链接 : poj2709 - Painter

思路

由于需要尽可能少的购买套餐,所以就要避免浪费。每种颜色的数量是不同的,为了避免某一种颜色剩余的过多,也就是有一些颜色会过早被用光,所以在每次取颜料来配置灰色时(利用 贪心 的思想),都要在剩余量最多的几种颜料中来取。
要每次都达到最优(也就是在剩余量最多中来取),所以每次的取量,不能过大。过大会导致不能达到最优,每次的进量只能为1。
具体实现也就是根据最大需求的颜料,进行第一次购买,并计算出每种颜料的剩余量。然后每次将最大的三种分别减一,灰色减一,再次排序。当不够配置时,也就是第三多的颜料用光是购进一次,直到灰色配置完成。

代码

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

using namespace std;
int color[15];

bool cmp(int a, int b)
{
    return a>b;
}

int main()
{
    int n, rt, grey;

    while((scanf("%d", &n))&&n)
    {
        for(int i=0; i<n; i++) scanf("%d", color+i);
        scanf("%d", &grey);

        rt = 0;
        sort(color, color+n);
        while(rt*50<color[n-1]) rt++;
        for(int i=0; i<n; i++) color[i] = rt*50 - color[i];

        while(grey>0)
        {
            sort(color, color+n, cmp);
            if(color[2]<=0)
            {
                for(int i=0; i<n; i++) color[i] += 50;
                rt++;
            }
            color[0] -= 1;
            color[1] -= 1;
            color[2] -= 1;
            grey -= 1;
        }

        printf("%d\n", rt);
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值