POJ 2376 Cleaning Shifts【题解】贪心

题面:http://poj.org/problem?id=2376

和luogu的题面有不同,并不是询问最小的代价。

而是询问最小点数。

那么就可以用贪心解决了。

代码如下:

#include<cstdio>
#include<algorithm>
#define int long long
#define ll long long
using namespace std;
int n,ti;
struct node{
    int l,r;
    bool operator < (const node &a) const{
        return l==a.l ? r<a.r : l<a.l;
    }
}c[25010];
signed main()
{
    scanf("%lld%lld",&n,&ti);
    for(int i=1;i<=n;i++)
        scanf("%lld%lld",&c[i].l,&c[i].r);
    sort(c+1,c+1+n);
    c[n+1].l=0x7fffffff;
    bool f=0;
    ll t=0,tp=0,ans=0;
    for(int i=1;i<=n;i++)
        if(c[i].l<=t+1){
            if(c[i].r>tp)
                tp=c[i].r,f=1;
            if(c[i+1].l>t+1 && f) //如果下一个连接不上,那么这一个一定要取。
                t=tp,ans++,f=0;
        }
    if(ti>t) printf("-1\n");
    else printf("%lld\n",ans);
    return 0;
}

 

转载于:https://www.cnblogs.com/ChrisKKK/p/11505394.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值