1.3.2 Barn Repair【贪心】

链接

/*
ID: email_f1
LANG: C++
PROG: barn1
*/
#include <cstdio>
#include <cmath>
#include <cstring>
#include <string>
#include <set>
#include <map>
#include <stack>
#include <queue>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
#define ll long long
#define eps 10^(-6)
#define Q_CIN ios::sync_with_stdio(false);
#define REP( i , n ) for ( int i = 0 ; i < n ; ++ i )
#define FOR( i , a , b ) for ( int i = a ; i <= b ; ++ i )
#define CLR( a , x ) memset ( a , x , sizeof (a) );
#define RE freopen("barn1.in","r",stdin);
#define WE freopen("barn1.out","w",stdout);
#define MOD 10009
#define bug(x) cout<<#x<<":"<<(x)<<endl;

//用最短的长度将区间覆盖,则给的木板数当然都用上最省了,也就是说用M根板尽量短地覆盖
//首先假设用板将全部有牛的覆盖掉,然后每次挑里面最大的空隙,在那里切开(覆盖到没牛的棚当然要尽量少),直到木板没了。
//如果木板数大于有牛的数,则长度为牛数
//空隙:6-5=1但没有空隙,7-5才有
int a[250],len[250];
bool cmp(int a,int b)
{
    return a>b;
}
int main()
{
    RE WE
    int m,s,c;
    while(cin>>m>>s>>c)
    {
        REP(i,c)
            cin>>a[i];
        int ans;
        if(m>=c)        //如果木板足够,则有多少个带牛的牛棚就多少长度
            ans=c;
        else
        {
            sort(a,a+c);            //编号不一定升序
            FOR(i,1,c)
                len[i]=a[i]-a[i-1]-1;
            len[0]=0;
            ans=a[c-1]-a[0]+1;      //最后个有牛-第一个有牛
            sort(len,len+c,cmp);    //长度降序排序
            int tmp=0,idx=0;        //idx=0
            m--;                    //先给全部搭成一块,剩余块数-1
            while(m--)              //每切一刀多一块,则剩余的块数减少1
            {
                ans-=len[idx];
                idx++;
            }
        }
        cout<<ans<<endl;
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值