Cleaning Shifts(POJ 2376 贪心)

Cleaning Shifts

Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 15143   Accepted: 3875

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

区间覆盖问题,贪心
 1 #include <iostream>
 2 #include <cstring>
 3 #include <algorithm>
 4 #include <cstdio>
 5 using namespace std;
 6 struct node
 7 {
 8     int x,y;
 9 }cow[25000+5];
10 int cmp(node a,node b)
11 {
12     if(a.x==b.x)    return a.y>=b.y;
13     return a.x<b.x;
14 }
15 int main()
16 {
17     int T,N;
18     int i,j;
19     freopen("in.txt","r",stdin);
20     while(scanf("%d%d",&N,&T)!=EOF)
21     {
22         for(i=0;i<N;i++)
23             scanf("%d%d",&cow[i].x,&cow[i].y);
24         sort(cow,cow+N,cmp);
25         int c=0,coun=1,j;
26         bool ans=1;
27         if(cow[0].x>1)
28         {
29             printf("-1\n");
30             continue;
31         }
32         int t=cow[0].y+1;
33         while(t<=T)
34         {
35             int MaxLen=t;
36             bool flag=0;
37             int k=c;
38             for(j=c+1;cow[j].x<=t&j<N;j++)
39             {
40
41                 if(cow[j].y>=MaxLen)
42                 {
43                     k=j;
44                     MaxLen=cow[j].y;
45                     flag=1;
46                 }
47             }
48             if(flag==0)
49             {
50                 ans=0;
51                 break;
52             }
53             c=k;
54             t=MaxLen+1;
55             coun++;
56         }
57         if(ans==0)    {printf("-1\n");continue;}
58         printf("%d\n",coun);
59     }
60 }
时间: 2024-08-26 06:22:02

Cleaning Shifts(POJ 2376 贪心)的相关文章

Cleaning Shifts (poj 2376 贪心)

Language: Default Cleaning Shifts Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 12111   Accepted: 3155 Description Farmer John is assigning some of his N (1 <= N <= 25,000) cows to do some cleaning chores around the barn. He always wa

bzoj 3389: [Usaco2004 Dec]Cleaning Shifts安排值班 -- 贪心

3389: [Usaco2004 Dec]Cleaning Shifts安排值班 Time Limit: 1 Sec  Memory Limit: 128 MB Description 一天有T(1≤T≤10^6)个时段.约翰正打算安排他的N(1≤N≤25000)只奶牛来值班,打扫 打扫牛棚卫生.每只奶牛都有自己的空闲时间段[Si,Ei](1≤Si≤Ei≤T),只能把空闲的奶牛安排出来值班.而且,每个时间段必需有奶牛在值班.  那么,最少需要动用多少奶牛参与值班呢?如果没有办法安排出合理的方案,

Cleaning Shifts / OpenJ_Bailian - 2376

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 bei

poj 2376 贪心 区间覆盖问题

题意: 给n个区间 选择尽量少的区间 覆盖1~T这个区间 如果不能覆盖 输出-1 思路: 经典贪心 区间覆盖 将所有区间按照起点从小到大排序 取终点在最右边的那个区间 code: #include<cstdio> #include<iostream> #include<cstring> #include<algorithm> #include<vector> #include<string> #include<queue>

poj2376 Cleaning Shifts(区间贪心,理解题意)

https://vjudge.net/problem/POJ-2376 题意理解错了!!真是要仔细看题啊!! 看了poj的discuss才发现,如果前一头牛截止到3,那么下一头牛可以从4开始!!! 1 #include<iostream> 2 #include<cstdio> 3 #include<queue> 4 #include<cstring> 5 #include<algorithm> 6 #include<cmath> 7

POJ 2376 Cleaning shifts 贪心 基础题

Cleaning Shifts Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 13042   Accepted: 3373 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 co

POJ - 2376 Cleaning Shifts 贪心(最小区间覆盖)

Cleaning Shifts 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

[POJ 2376] Cleaning Shifts

Cleaning Shifts Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 12874   Accepted: 3331 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 co

POJ2376 Cleaning Shifts 【贪心】

Cleaning Shifts Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 11542   Accepted: 3004 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 co