Cleaning Shifts

Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 40751   Accepted: 9871

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.

 
题意:有n头牛要值班,每头牛有一个值班区间,要安排牛在[1 , k]区间值班,最少需要几头牛
 
题解:左端点不相等,按从小到大排序,相等按右端点从大到小排序。for循环遍历,在左端点>=now+1的区间中选右端点最大的区间即可
 
#include<iostream>
#include<algorithm>
#include<string.h>
#include<string>
#include<vector>
#include<stack>
#include<math.h>
#define mod 998244353
#define ll long long
#define MAX 0x3f3f3f3f
using namespace std;
int vis[];
struct node
{
int l;
int r;
}p[]; bool cmp(node a,node b)
{
if(a.l!=b.l)
return a.l<b.l;
else
return a.r>b.r;
}
int main()
{
int n,t;
while(~scanf("%d%d",&n,&t))
{
int flag=,cnt=,pos=;
for(int i=;i<n;i++)
scanf("%d%d",&p[i].l,&p[i].r);
sort(p,p+n,cmp);
if(p[].l!=)
flag=;
int now=p[].r;
for(int i=;i<n&&flag==;)
{
if(p[i].l>now+)
{
flag=;
break;
}
else
{
int temp=now;
while(i<n&&p[i].l<=now+)//在左端点<=now+1的区间中选右端点最大的区间
{
if(p[i].r>temp)//更新最大右端点
{
temp=p[i].r;
pos=i;
}
i++;
}
if(temp==now)//更新之前和更新之后一样,那还不如不更新
continue;
now=temp;//更新
cnt++;
}
}
if(p[pos].r!=t)
flag=;
if(flag==)
printf("-1\n");
else
printf("%d\n",cnt );
}
return ;
}

最新文章

  1. .NET面试题系列[9] - IEnumerable
  2. Windows Azure Storage (6) Windows Azure Storage之Table
  3. DataGrid--多记录CRUD
  4. swift 2.2 语法 (下)
  5. C#显示声名接口就是为了解决方法重名的问题
  6. ural 1353. Milliard Vasya&#39;s Function(dp)
  7. 在IIS上部署你的ASP.NET Core项目
  8. dBm与Vpp相互转换公式
  9. 极客时间-左耳听风-程序员攻略-Linux系统、内存和网络
  10. Docker容器进入的4种方式
  11. 数位dp 的简单入门
  12. git+github/码云+VSCode (转载)
  13. (4)进程---daemon守护线程和join阻塞
  14. 阿里八八Alpha阶段Scrum(3/12)
  15. python常用库安装网址
  16. iOS: 定义 Block
  17. Unity3d 手机屏幕自动适配
  18. android中必备的接口回调用法
  19. Java中子类对象赋值给父类变量
  20. nodejs笔记--基础篇(一)

热门文章

  1. c++子类父类关系(翁恺c++公开课[15-16]学习笔记)
  2. Linux内核5.4正式将华为EROFS超级文件系统合入主线
  3. c++读取注册表的实例
  4. 数学公式在 iOS 中的表示
  5. 捣鼓FileZilla
  6. Codeforces1303E. Erase Subsequences
  7. Windows 网络显示监视器软件_spacedesk
  8. 有关vector元素的取地址
  9. 如何更改linux(centos)下的Apache http端口号
  10. C语言书籍入门---第三章