博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[BZOJ1672][Usaco2005 Dec]Cleaning Shifts 清理牛棚
阅读量:5319 次
发布时间:2019-06-14

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

1672: [Usaco2005 Dec]Cleaning Shifts 清理牛棚

Time Limit: 5 Sec  Memory Limit: 64 MB Submit: 953  Solved: 407 [][][]

Description

Farmer John's cows, pampered since birth, have reached new heights of fastidiousness. They now require their barn to be immaculate. Farmer John, the most obliging of farmers, has no choice but hire some of the cows to clean the barn. Farmer John has N (1 <= N <= 10,000) cows who are willing to do some cleaning. Because dust falls continuously, the cows require that the farm be continuously cleaned during the workday, which runs from second number M to second number E during the day (0 <= M <= E <= 86,399). Note that the total number of seconds during which cleaning is to take place is E-M+1. During any given second M..E, at least one cow must be cleaning. Each cow has submitted a job application indicating her willingness to work during a certain interval T1..T2 (where M <= T1 <= T2 <= E) for a certain salary of S (where 0 <= S <= 500,000). Note that a cow who indicated the interval 10..20 would work for 11 seconds, not 10. Farmer John must either accept or reject each individual application; he may NOT ask a cow to work only a fraction of the time it indicated and receive a corresponding fraction of the salary. Find a schedule in which every second of the workday is covered by at least one cow and which minimizes the total salary that goes to the cows.

    约翰的奶牛们从小娇生惯养,她们无法容忍牛棚里的任何脏东西.约翰发现,如果要使这群有洁癖的奶牛满意,他不得不雇佣她们中的一些来清扫牛棚, 约翰的奶牛中有N(1≤N≤10000)头愿意通过清扫牛棚来挣一些零花钱.由于在某个时段中奶牛们会在牛棚里随时随地地乱扔垃圾,自然地,她们要求在这段时间里,无论什么时候至少要有一头奶牛正在打扫.需要打扫的时段从某一天的第M秒开始,到第E秒结束f0≤M≤E≤86399).注意这里的秒是指时间段而不是时间点,也就是说,每天需要打扫的总时间是E-M+I秒. 约翰已经从每头牛那里得到了她们愿意接受的工作计划:对于某一头牛,她每天都愿意在笫Ti,.T2秒的时间段内工作(M≤Ti≤马≤E),所要求的报酬是S美元(0≤S≤500000).与需打扫时段的描述一样,如果一头奶牛愿意工作的时段是每天的第10_20秒,那她总共工作的时间是11秒,而不是10秒.约翰一旦决定雇佣某一头奶牛,就必须付给她全额的工资,而不能只让她工作一段时间,然后再按这段时间在她愿意工作的总时间中所占的百分比来决定她的工资.现在请你帮约翰决定该雇佣哪些奶牛以保持牛棚的清洁,当然,在能让奶牛们满意的前提下,约翰希望使总花费尽量小.

Input

* Line 1: Three space-separated integers: N, M, and E. * Lines 2..N+1: Line i+1 describes cow i's schedule with three space-separated integers: T1, T2, and S.

    第1行:3个正整数N,M,E,用空格隔开.
    第2到N+1行:第i+l行给出了编号为i的奶牛的工作计划,即3个用空格隔开的正整数Ti,T2,S.

Output

* Line 1: a single integer that is either the minimum total salary to get the barn cleaned or else -1 if it is impossible to clean the barn.

    输出一个整数,表示约翰需要为牛棚清理工作支付的最少费用.如果清理工作不可能完成,
那么输出-1.

Sample Input

3 0 4  //三头牛,要打扫从0到4号stall
0 2 3  //一号牛,从0号stall打扫到2号,工资为3
3 4 2
0 0 1
INPUT DETAILS:
FJ has three cows, and the barn needs to be cleaned from second 0 to second
4. The first cow is willing to work during seconds 0, 1, and 2 for a total
salary of 3, etc.

Sample Output

5
 
把所有牛按照左端点排序

$f[i]$表示到$i$时刻的最小代价

对于一只$l-r$费用$c$的牛,可以用$f[i-1]+c$更新$l-r$

一定记得开long long啊啊啊啊

#include 
#include
#include
using namespace std; char buf[10000000], *ptr = buf - 1;inline int readint(){ int n = 0; char ch = *++ptr; while(ch < '0' || ch > '9') ch = *++ptr; while(ch <= '9' && ch >= '0'){ n = (n << 1) + (n << 3) + ch - '0'; ch = *++ptr; } return n;}typedef long long ll;const int maxn = 10000 + 10;const ll INF = 1ll << 60;#define lson l, mid, rt << 1#define rson mid + 1, r, rt << 1 | 1ll Min[400000 + 10], tag[400000 + 10];inline void PushUp(int rt){ Min[rt] = min(Min[rt << 1], Min[rt << 1 | 1]);}void Build(int l, int r, int rt){ Min[rt] = tag[rt] = INF; if(l == r) return; else{ int mid = l + r >> 1; Build(lson); Build(rson); }}inline void PushDown(int rt){ if(tag[rt] != INF){ tag[rt << 1] = min(tag[rt << 1], tag[rt]); tag[rt << 1 | 1] = min(tag[rt << 1 | 1], tag[rt]); Min[rt << 1] = min(Min[rt << 1], tag[rt]); Min[rt << 1 | 1] = min(Min[rt << 1 | 1], tag[rt]); tag[rt] = INF; }}ll Query(int qw, int l, int r, int rt){ if(l == r) return Min[rt]; else{ PushDown(rt); int mid = l + r >> 1; if(qw <= mid) return Query(qw, lson); else return Query(qw, rson); }}void Update(int ql, int qr, ll qv, int l, int r, int rt){ if(ql <= l && r <= qr){ Min[rt] = min(Min[rt], qv); tag[rt] = min(tag[rt], qv); } else{ PushDown(rt); int mid = l + r >> 1; if(ql <= mid) Update(ql, qr, qv, lson); if(qr > mid) Update(ql, qr, qv, rson); PushUp(rt); }}struct Node{ int st, et, s; Node(){} bool operator < (const Node &x) const { return st < x.st; }}a[maxn];int main(){ fread(buf, sizeof(char), sizeof(buf), stdin); int N, M, E; N = readint(); M = readint(); E = readint(); for(int i = 1; i <= N; i++){ a[i].st = readint(); a[i].et = readint(); a[i].s = readint(); } Build(M, E, 1); sort(a + 1, a + N + 1); ll t; for(int i = 1; i <= N; i++){ if(a[i].et < M) continue; if(a[i].st <= M) t = 0; else t = Query(a[i].st - 1, M, E, 1); if(t == INF){ puts("-1"); return 0; } else Update(a[i].st, a[i].et, t + a[i].s, M, E, 1); } ll ans = Query(E, M, E, 1); if(ans == INF) puts("-1"); else printf("%lld\n", ans); return 0;}

 

 

转载于:https://www.cnblogs.com/ruoruoruo/p/7553948.html

你可能感兴趣的文章
shell cat 合并文件,合并数据库sql文件
查看>>
Android 将drawable下的图片转换成bitmap、Drawable
查看>>
介绍Win7 win8 上Java环境的配置
查看>>
移动、联通和电信,哪家的宽带好,看完你就知道该怎么选了!
查看>>
Linux设置环境变量的方法
查看>>
Atitit.进程管理常用api
查看>>
构建自己的项目管理方案
查看>>
利用pca分析fmri的生理噪声
查看>>
div水平居中且垂直居中
查看>>
epoll使用具体解释(精髓)
查看>>
AndroidArchitecture
查看>>
原生JavaScript第六篇
查看>>
安装Endnote X6,但Word插件显示的总是Endnote Web"解决办法
查看>>
python全栈 计算机硬件管理 —— 硬件
查看>>
大数据学习
查看>>
简单工厂模式
查看>>
Delphi7编译的程序自动中Win32.Induc.a病毒的解决办法
查看>>
Objective-C 【关于导入类(@class 和 #import的区别)】
查看>>
倍福TwinCAT(贝福Beckhoff)常见问题(FAQ)-点击运行按钮进入到运行状态报错Error starting TwinCAT System怎么办 AdsWarning1823怎么办...
查看>>
【转】javascript 中的很多有用的东西
查看>>