博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 2376 Cleaning Shifts 贪心 区间问题
阅读量:5205 次
发布时间:2019-06-13

本文共 2271 字,大约阅读时间需要 7 分钟。

 Cleaning Shifts 
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 14425   Accepted: 3700

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 101 73 66 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.
区间问题,,典型的贪心   63ms
#include
#include
#include
#include
using namespace std;typedef long long ll;struct Node{ int s; int e;}node[25005];int cmp(Node a,Node b){ if(a.s!=b.s) return a.s
b.e;}int main(){ int n,q; while(~scanf("%d %d",&n,&q)) { for(int i=1;i<=n;i++) scanf("%d %d",&node[i].s,&node[i].e); sort(node+1,node+n+1,cmp); if(node[1].s!=1) { printf("-1\n"); continue; } int cnt=1,i=1,r=node[1].e,temp=0; while(r
r) { temp=j; r=node[j].e; } if(temp==0) break; else { cnt++; r=node[temp].e; i=temp; } } if(r

转载于:https://www.cnblogs.com/smilesundream/p/6642551.html

你可能感兴趣的文章
DDRmenu(翻译)
查看>>
python xml解析和生成
查看>>
CSS - input 只显示下边框
查看>>
gulp下单页面应用打包
查看>>
python应用:爬虫实例(静态网页)
查看>>
012 webpack中的router
查看>>
用Monitor简单3步监控中间件ActiveMQ
查看>>
ANDROID_MARS学习笔记_S01原始版_018_SERVICE之Parcel
查看>>
迅为iTOP-4418开发板兼容八核6818开发板介绍
查看>>
com.fasterxml.jackson.databind.JsonMappingException
查看>>
【UVa 540】Team Queue
查看>>
Advanced Architecture for ASP.NET Core Web API
查看>>
排序算法(二)
查看>>
4.4 多线程进阶篇<下>(NSOperation)
查看>>
如何更改Android的默认虚拟机地址(Android virtual driver路径设置)
查看>>
Python内置函数(36)——iter
查看>>
事件双向绑定原理
查看>>
HTML标签_1
查看>>
[Angular] @ViewChildren and QueryLists (ngAfterViewInit)
查看>>
jsp组成元素
查看>>