连续不能放相同的(贪心)

http://acm.hdu.edu.cn/showproblem.php?pid=5835

题意:t组数据,n个礼物,每种礼物的个数。每个桌子上都要放两种礼物,分别是特殊礼物和普通礼物,在n种礼物中的每一个,都既可以是普通礼物,也可以是特殊礼物。对特殊礼物没有要求,不能由空桌子,且相邻的桌子上放的普通礼物要是不相同的。

解析:贪心。每次选择与上一个礼物不相同,且当前个数最多的。与礼物的总数/2比较大小,最多不能超过礼物的总数/2

代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <sstream>
#include <string>
#include <algorithm>
#include <list>
#include <map>
#include <vector>
#include <queue>
#include <stack>
#include <cmath>
#include <cstdlib>
using namespace std;
int a[15];
int main()
{
    //freopen("in.txt","r",stdin);
    int T;
        int n;
    scanf("%d",&T);


    for(int t = 1; t <= T; t ++)
    {
        int maxn,sum = 0,id,last;
        scanf("%d",&n);
        for(int i = 0 ; i < n; i ++)
        {
            scanf("%d",&a[i]);
            sum += a[i];
        }
        sum = sum / 2;
        int ans = 0;
        while(1)
        {
            bool flag = false;
            maxn = 0;
            for(int i = 0; i < n; i ++){
               if(a[i] > maxn && last != i)
               {
                   id = i;
                   maxn = a[i];
                   flag = true;
               }
            }
            if(flag == false)
            {
                break;
            }
            a[id] --;
            last = id;
            ans ++;
            if(ans >= sum)
                break;
        }
        printf("Case #%d: %d\n",t,ans);

    }
    return 0;
}



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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值