[贪心] poj 2376 Cleaning Shifts

来源:互联网 发布:手机淘宝店铺没有收藏 编辑:程序博客网 时间:2024/04/16 15:38

Cleaning Shifts
Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 13438 Accepted: 3467
Description

Farmer John is assigning some of his N (1 <= N <= 25,000) cows to do some cleaning chores around the barn. He always wants to have one cow working on cleaning things up and has divided the day into T shifts (1 <= T <= 1,000,000), the first being shift 1 and the last being shift T.

Each cow is only available at some interval of times during the day for work on cleaning. Any cow that is selected for cleaning duty will work for the entirety of her interval.

Your job is to help Farmer John assign some cows to shifts so that (i) every shift has at least one cow assigned to it, and (ii) as few cows as possible are involved in cleaning. If it is not possible to assign a cow to each shift, print -1.
Input

  • Line 1: Two space-separated integers: N and T

  • Lines 2..N+1: Each line contains the start and end times of the interval during which a cow can work. A cow starts work at the start time and finishes after the end time.
    Output

  • Line 1: The minimum number of cows Farmer John needs to hire or -1 if it is not possible to assign a cow to each shift.
    Sample Input

3 10
1 7
3 6
6 10
Sample Output

2
Hint

This problem has huge input data,use scanf() instead of cin to read data to avoid time limit exceed.

INPUT DETAILS:

There are 3 cows and 10 shifts. Cow #1 can work shifts 1..7, cow #2 can work shifts 3..6, and cow #3 can work shifts 6..10.

OUTPUT DETAILS:

By selecting cows #1 and #3, all shifts are covered. There is no way to cover all the shifts using fewer than 2 cows.
//1 如果第一个区间不是从1开始,则无法覆盖,输出-1。
//
//2 令当前覆盖到的时间time为开始时间为1的区间中结束时间的最大值。
//
//3 从开始时间不为1的区间开始循环遍历。
//
//4 选择合法区间中结束时间值最大的那个区间,合并到[1,time],合并后time为选择的区间的结束时间。
//所谓合法区间是指区间的起始时间start<=time+1,这样才能和区间[1,time]合并。如果没有找到合法区
//间或者找到的区间结束时间比time小,则无法覆盖,结束循环。
//
//5 循环结束后,根据time是否大于等于T,输出结果。

说实话,这个贪心真的不好写。。

#include <iostream>#include <cstring>#include <cstdio>#include <cmath>#include <vector>#include <set>#include<algorithm>using namespace std;const int MAXN = 50050;int N,T;struct node{    int st,ed;}cow[MAXN];bool cmp(node a,node b){    if (a.st != b.st) return a.st<b.st;    else return a.ed < b.ed;}int main(){   //freopen("in.txt","r",stdin);    while(scanf("%d%d",&N,&T) != EOF)    {        for(int i = 0; i < N; i++)            scanf("%d%d",&cow[i].st,&cow[i].ed);        sort(cow,cow+N,cmp);        if (cow[0].st > 1) {printf("-1\n"); continue;}        int ans = 1, id = 0;        for(int i = 0; i < N;)        {            int cnt = 0;            for(int j = i+1; j < N; j++)            {                if (cow[j].st > cow[id].ed+1)                    {break;}                if (cow[j].st >= cow[id].st && cow[j].ed >= cow[id].ed + 1)                {                    if (cow[j].ed > cow[cnt].ed)                        {cnt = j;}                }            }                if (cnt == 0) i++;                else                {                    id = cnt;                    ans++;                    i = id;                }        }        if (cow[id].ed ==T)            printf("%d\n",ans);        else printf("-1\n");    }}
0 0