【BZOJ1672】[Usaco2005 Dec]Cleaning Shifts
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.
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.
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.
Sample Input
0 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
HINT
约翰有3头牛,牛棚在第0秒到第4秒之间需要打扫.第1头牛想要在第0,1,2秒内工作,为此她要求的报酬是3美元.其余的依此类推. 约翰雇佣前两头牛清扫牛棚,可以只花5美元就完成一整天的清扫.
题解:完了,被水题伤害了,原本想用线段树,结果狂WA不止,后来看题解n^2动规就过了,给跪了。
#include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #define lson x<<1 #define rson x<<1|1 using namespace std; int n,m,e; long long ans; struct cows { int t1,t2; long long c; }p[10010]; long long f[10010]; bool cmp(cows a,cows b) { return a.t2<b.t2; } int main() { int i,j; scanf("%d%d%d",&n,&m,&e); for(i=1;i<=n;i++) scanf("%d%d%lld",&p[i].t1,&p[i].t2,&p[i].c); sort(p+1,p+n+1,cmp); memset(f,0x3f,sizeof(f)); ans=f[0]; for(i=1;i<=n;i++) { if(p[i].t1==m) { f[i]=p[i].c; continue; } for(j=i-1;p[j].t2>=p[i].t1-1&&j>=1;j--) f[i]=min(f[i],p[i].c+f[j]); if(p[i].t2==e) ans=min(ans,f[i]); } if(ans==f[0]) printf("-1"); else printf("%lld",ans); return 0; }