DP_Milking Time
bessie is such a hard-working cow. in fact, she is so focused on maximizing her productivity that she decides to schedule her next n (1 ≤ n ≤ 1,000,000) hours (conveniently labeled 0..n-1) so that she produces as much milk as possible.
farmer john has a list of m (1 ≤ m ≤ 1,000) possibly overlapping intervals in which he is available for milking. each interval i has a starting hour (0 ≤ starting_houri ≤ n), an ending hour (starting_houri < ending_houri ≤ n), and a corresponding efficiency (1 ≤ efficiencyi ≤ 1,000,000) which indicates how many gallons of milk that he can get out of bessie in that interval. farmer john starts and stops milking at the beginning of the starting hour and ending hour, respectively. when being milked, bessie must be milked through an entire interval.
even bessie has her limitations, though. after being milked during any interval, she must rest r (1 ≤ r ≤ n) hours before she can start milking again. given farmer johns list of intervals, determine the maximum amount of milk that bessie can produce in the n hours.
input
* line 1: three space-separated integers: n, m, and r
* lines 2..m+1: line i+1 describes fj's ith milking interval withthree space-separated integers: starting_houri , ending_houri , and efficiencyi
output
* line 1: the maximum number of gallons of milk that bessie can product in the nhours
sample input
12 4 2 1 2 8 10 12 19 3 6 24 7 10 31
sample output
43
题意:农夫在m个时间段内可以挤奶(起始时间st,终止时间et,该时间段内可以获取的奶量c),奶牛每次产奶后需要休息r小时,求在给定时间,求奶牛在这段时间内的最大产奶量。
思路:每次产奶后需要休息r个小时,即挤奶的时间段可视为st~et+r。
1、将区间按时间段的开始时间进行排序。
2、建立数组s[]表示包含本区间并以此区间结尾的区间的最大挤奶量 如 s[3]即为包含有p[3].st~p[3].et区间并以p[3].st~p[3].et结尾的区间的最大挤奶量
3、s[]的递推公式: 若此区间可与前面的区间相接,则保留这个挤奶量,并最终将这些挤奶量的最大值存于数组是s[]
s[]=max{可与当前区间相接的前面区间的s[]+当前区间的挤奶量};
4、遍历数组s[]求数组s中所存的最大值
1 #include<cstdio> 2 #include<algorithm> 3 using namespace std; 4 int s[1005]; 5 struct node{ 6 int st,et,c; 7 }p[1005]; 8 bool cmp( node a, node b){ 9 if( a.st<b.st ) 10 return true; 11 return false; 12 } 13 void dp( int m){ 14 for( int i=0; i<m; i++){ 15 s[i]=p[i].c; 16 for( int j=0; j<i; j++){ 17 if( p[j].et<=p[i].st ) 18 s[i]=max(s[i],s[j]+p[i].c); 19 } 20 } 21 } 22 int main() 23 { 24 int n,m,r; 25 int max; 26 27 while(~scanf("%d%d%d",&n,&m,&r)){ 28 max=-1; 29 for( int i=0; i<m; i++){ 30 scanf("%d%d%d",&p[i].st,&p[i].et,&p[i].c); 31 p[i].et+=r; 32 } 33 sort(p,p+m,cmp); 34 dp(m); 35 for( int i=0; i<m; i++) 36 if( s[i]>max ) 37 max=s[i]; 38 printf("%d\n",max); 39 } 40 41 return 0; 42 }
上一篇: 朋友被人打一顿
下一篇: logging模块 旗舰版
推荐阅读
-
win7中Windows Time时间服务错误1060怎么办?
-
Python中的time模块与datetime模块用法总结
-
Python中的time模块与datetime模块用法总结
-
Javascript miscellanea -display data real time, using window.status
-
win7中Windows Time时间服务错误1060怎么办?
-
Win10系统不能启动Windows Time服务的解决方法
-
ThinkPHP中SHOW_RUN_TIME不能正常显示运行时间的解决方法 原创
-
详解Python编程中time模块的使用
-
Python3.5内置模块之time与datetime模块用法实例分析
-
python使用time、datetime返回工作日列表实例代码