题目描述

Ever the maturing businessman, Farmer John realizes that he must manage his time effectively. He has N jobs conveniently numbered 1..N (1 <= N <= 1,000) to accomplish (like milking the cows, cleaning the barn, mending the fences, and so on).

To manage his time effectively, he has created a list of the jobs that must be finished. Job i requires a certain amount of time T_i (1 <= T_i <= 1,000) to complete and furthermore must be finished by time S_i (1 <= S_i <= 1,000,000). Farmer John starts his day at time t=0 and can only work on one job at a time until it is finished.

Even a maturing businessman likes to sleep late; help Farmer John determine the latest he can start working and still finish all the jobs on time.

作为一名忙碌的商人,约翰知道必须高效地安排他的时间.他有N工作要 做,比如给奶牛挤奶,清洗牛棚,修理栅栏之类的.

为了高效,列出了所有工作的清单.第i分工作需要T_i单位的时间来完成,而 且必须在S_i或之前完成.现在是0时刻.约翰做一份工作必须直到做完才能停 止.

所有的商人都喜欢睡懒觉.请帮约翰计算他最迟什么时候开始工作,可以让所有工作按时完 成.

输入输出格式

输入格式:

  • Line 1: A single integer: N

  • Lines 2..N+1: Line i+1 contains two space-separated integers: T_i and S_i

输出格式:

  • Line 1: The latest time Farmer John can start working or -1 if Farmer John cannot finish all the jobs on time.

输入输出样例

输入样例#1:

4
3 5
8 14
5 20
1 16

输出样例#1:

2

说明

Farmer John has 4 jobs to do, which take 3, 8, 5, and 1 units of time, respectively, and must be completed by time 5, 14, 20, and 16, respectively.

Farmer John must start the first job at time 2. Then he can do the second, fourth, and third jobs in that order to finish on time.

一开始没有理解题目的意思

以为这道题就是排个序然后判断一下第一个就好。

但是任务的时间可能会有重合的情况

所以

我们需要先以结束时间排个序(贪心)。

然后二分一个开始的点,判断一下这个开始点是否可行

 1 #include<cstdio>
 2 #include<algorithm>
 3 using namespace std;
 4 const int MAXN=100001;
 5 inline void read(int &n)
 6 {
 7     char c=getchar();bool flag=0;n=0;
 8     while(c<'0'||c>'9') c=='-'?flag==1,c=getchar():c=getchar();
 9     while(c>='0'&&c<='9')    n=n*10+c-48,c=getchar();
10 }
11 int n;
12 bool flag=0;
13 struct node
14 {
15     int need;
16     int time;
17 }mission[MAXN];
18 int comp(const node &a,const node &b)
19 {
20     return a.time<b.time;
21 }
22 bool pd(int bg)
23 {
24     int now=bg;// 做完最后一个任务的时间
25     for(int i=1;i<=n;i++)
26     {
27         if(mission[i].time-mission[i].need>=now)
28             now+=mission[i].need;
29         else
30             return 0;
31     }
32     flag=1;
33     return 1;
34 }
35 int main()
36 {
37     read(n);
38     for(int i=1;i<=n;i++)
39         read(mission[i].need),read(mission[i].time);
40     sort(mission+1,mission+n+1,comp);
41     int l=0,r=mission[n].time;
42     int ans=0;
43     while(l<=r)
44     {
45         int mid=(l+r)>>1;
46         if(pd(mid))        l=mid+1,ans=mid;
47         else     r=mid-1;
48     }
49     flag==0?printf("-1"):printf("%d",ans);
50     return 0;
51 }

P2920 [USACO08NOV]时间管理Time Management相关推荐

  1. 洛谷 P2920 [USACO08NOV]时间管理Time Management

    时间管理Time Management 二分枚举开始时间. #include <iostream> #include <cstdio> #include <algorit ...

  2. BZOJ1620洛谷P2920 [USACO08NOV]时间管理Time Management

    emm贪心题,但不知道怎么让我搞成了并查集 先将数组按结束时间排序,因为肯定先安排靠后的工作,后面处理时冲突会减小很多 然后如何并查集乱搞呢? 假如下图是一个没有加入任务的时间线{{20,5},{15 ...

  3. LUOGU P2920 [USACO08NOV]时间管理Time Management

    题目描述 Ever the maturing businessman, Farmer John realizes that he must manage his time effectively. H ...

  4. 题解 P2920 【[USACO08NOV]时间管理Time Management】

    好了,废话不多说,我们切入正题,首先,不懂得分治的可以去看这位大佬的文章, 这道题是让我们求最晚可以在什么时间起床,这里我们需要加入一个小小的贪心,就是结束时间短的放前面处理,至于为什么,相信你肯定能 ...

  5. P2920题解【[USACO08NOV]时间管理Time Management】

    这个题不难,但我是蒟蒻... 先看题目 题目: Ever the maturing businessman, Farmer John realizes that he must manage his ...

  6. [USACO08NOV]时间管理Time Management

    题目描述 Ever the maturing businessman, Farmer John realizes that he must manage his time effectively. H ...

  7. [BZOJ] 1620: [Usaco2008 Nov]Time Management 时间管理

    1620: [Usaco2008 Nov]Time Management 时间管理 Time Limit: 5 Sec  Memory Limit: 64 MB Submit: 850  Solved ...

  8. bzoj 1620: [Usaco2008 Nov]Time Management 时间管理(贪心)

    1620: [Usaco2008 Nov]Time Management 时间管理 Time Limit: 5 Sec  Memory Limit: 64 MB Submit: 834  Solved ...

  9. Time Management 时间管理

    Time Management 时间管理 世界上最快而又最慢,最长而又最短,最平凡而又最珍贵,最易被忽视而又最令人后悔的是什么? ------时间 ------接下来敢不敢完成挑战测试:你对时间的感知 ...

最新文章

  1. python实现简单的http服务器_Python实现简单HTTP服务器(二)
  2. Castle.ActiveRecord的ProxyFactory配置
  3. php 获取京东交易账号,PHP爬虫爬取京东列表
  4. JavaScript中的私有函数;Javascript构造函数的私有方法中访问其属性和公有方法
  5. idea无法正常使用SVN的解决方法
  6. Nginx 限制某 IP 在一段时间内对服务器发起请求的连接数
  7. 通过Visual Studio 2012 比较SQL Server 数据库的架构变更
  8. win环境的radius服务器搭建
  9. 光伏电站matlab仿真,光伏发电的MATLAB仿真.doc
  10. python入栈出栈实现约瑟夫环
  11. 电脑连接HDMI显示器后没声音
  12. 计算机键盘上的句号键在哪,电脑键盘句号是哪个键
  13. WIN7 安装使用远程服务器管理工具-如DHCP、AD域、HyperV、远程桌面
  14. 【理财入门一】三大资产与财务自由
  15. 路由实验5多区域OSPF
  16. 快速傅里叶变换-快速傅里叶变换
  17. 开源软件及国内发展趋势
  18. DFS(深度优先搜索)学习笔记(C语言版本)
  19. 吴恩达深度学习教程——中文笔记网上资料整理
  20. 2021年低压电工免费试题及低压电工实操考试视频

热门文章

  1. SQL Server时间粒度系列----第9节时间粒度示例演示
  2. ISP DSP的不同
  3. XL, an extensible programming language, implements concept programming
  4. Mssql高级注入笔记.txt (转自:慕容小雨BLOG)
  5. 大数据之-Hadoop之HDFS的API操作_网络拓扑_节点离客户端的距离计算---大数据之hadoop工作笔记0067
  6. 持续集成部署Jenkins工作笔记0011---配置构建命令并手动执行一次构建
  7. C#.Net工作笔记003---异步编程async await_在开发中的使用经验_随时更新
  8. 数据库工作笔记005---You have an error in your SQL syntax; check the manual that corresponds to y
  9. nginx学习笔记002---Nginx代理配置_案例1_实现了对前端代码的方向代理_并且配置了后端api接口的访问地址
  10. Alt+/ 快速提示快捷键修复及ecplise心得