LUOGU P2920 [USACO08NOV]时间管理Time Management

news/2024/10/23 10:23:48/

题目描述

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时刻.约翰做一份工作必须直到做完才能停 止.

所有的商人都喜欢睡懒觉.请帮约翰计算他最迟什么时候开始工作,可以让所有工作按时完成.(如果无法完成全部任务,输出-1)
输入输出格式
输入格式:

  • 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.

解题思路

考试题,二分答案斜挂。。。我真的是个人才, 发现必须要有ans,不能直接输出l,否则会有些奇奇怪怪的错误。我的做法是将原数列按S排序,然后二分答案,时间复杂度O(nlogn),100000还是可以过的。

代码

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cstdlib>using namespace std;
const int MAXN = 100005;inline int rd(){int x=0,f=1;char ch=getchar();while(ch<'0' || ch>'9') {if(ch=='-') f=-1;ch=getchar();}while(ch>='0' && ch<='9') {x=(x<<1)+(x<<3)+ch-'0';ch=getchar();}return x*f;
}int n,ans=0;struct Time{int st,ed;
}t[MAXN];inline bool cmp(Time a,Time b){return a.ed<b.ed;
}inline bool check(int x){int k=x;for(register int i=1;i<=n;i++){k+=t[i].st;if(k>t[i].ed) return false;}return true;
}int main(){
//  freopen("manage.in","r",stdin);
//  freopen("manage.out","w",stdout);n=rd();for(register int i=1;i<=n;i++)t[i].st=rd(),t[i].ed=rd();sort(t+1,t+1+n,cmp);int l=0,r=t[1].ed-t[1].st;
//  for(register int i=1;i<=n;i++) cout<<t[i].st<<" "<<t[i].ed<<endl;if(r<0) {puts("-1");return 0;}while(l<=r){int mid=(l+r)>>1;
//      cout<<l<<" "<<r<<" ";
//      cout<<mid<<endl;if(check(mid)) {l=mid+1;ans=mid;}else r=mid-1;}if(ans==0 && !check(0)) puts("-1");else printf("%d",ans);return 0;
}/*
4
3 5
8 14
5 20
1 16
*//*
3
1 100
100 105
110 300
*/

http://www.ppmy.cn/news/505739.html

相关文章

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

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

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

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

CenOS 7.x的高级管理工具systemd介绍

文章目录 一、系统启动流程回顾二、CentOS 5.x,6.x,7.x的init程序区别三、systemd工具介绍3.1、systemd工具概述3.2、systemctl工具概述3.3、service以及chkconfig工具使用回顾3.4、systemd中的unit介绍3.5、systemctl工具实现service和chkconfig的功能3.6、systemctl实现运行级…

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

这个题不难&#xff0c;但我是蒟蒻。。。 先看题目 题目&#xff1a; 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 co…

[vue3.x]实战问题--vue2.x升级vue3.x遇到的问题

主要是记录一在使用vue&#xff0c;并且从vue2.x升级版本过程中遇到的问题&#xff0c;方便以后的查找 环境 升级vuenext 脚手架&#xff1a;vue-cli vue:2.6.11更新脚手架 脚手架如果存在全局安装 npm i vue/cli -g然后在项目中更新vue/cli-service npm i vue/cli-servi…

HDU 2920 分块底数优化 暴力

其实和昨天写的那道水题是一样的&#xff0c;注意爆LL $1<n,k<1e9$&#xff0c;$\sum\limits_{i1}^{n}(k \mod i) nk - \sum\limits_{i1}^{min(n,k)}\lfloor\frac{k}{i}\rfloor i$ /** Date : 2017-09-21 19:55:31* FileName: HDU 2620 分块底数优化 暴力.cpp* Platf…

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

P2920 [USACO08NOV]时间管理Time Management 题目描述 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 t…

Spark GraphX 聚合操作

package Spark_GraphXimport org.apache.spark.{SparkConf, SparkContext} import org.apache.spark.graphx._ import org.apache.spark.graphx.util.GraphGenerators/*** 计算每一个用户的追随者数量和追随者的平均年龄*/ object Graphx_聚合操作 {def main(args: Array[Strin…