码迷,mamicode.com
首页 > 其他好文 > 详细

poj3616 Milking Time

时间:2017-03-18 22:42:10      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:const   struct   strong   bool   namespace   log   name   ons   node   

思路:

dp。

实现:

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <algorithm>
 4 using namespace std;
 5 typedef long long ll;
 6 ll n,m,r;
 7 struct node
 8 {
 9     ll start;
10     ll end;
11     ll p;
12 };
13 node a[1005];
14 ll dp[1005];
15 bool cmp(const node & a,const node & b)
16 {
17     if(a.start != b.start)
18     {
19         return a.start < b.start;
20     }
21     return a.end < b.end;
22 }
23 ll solve()
24 {
25     for(int i = 0;i < m;i ++)
26     {
27         dp[i] = a[i].p;
28         for(int j = 0;j < i;j ++)
29         {
30             if(a[j].end <= a[i].start)
31                 dp[i] = max(dp[i], dp[j] + a[i].p);
32         }
33     }
34     ll maxn = 0;
35     for(int i = 0;i < m;i ++)
36         maxn = max(maxn, dp[i]);
37     return maxn;
38 }
39 int main()
40 {
41     cin >> n >> m >> r;
42     for(int i = 0;i < m;i ++)
43     {
44         scanf("%lld%lld%lld",&a[i].start,&a[i].end,&a[i].p);
45         a[i].end += r;
46     }
47     sort(a, a + m,cmp);
48     cout << solve() << endl;
49     return 0;    
50 } 

 

poj3616 Milking Time

标签:const   struct   strong   bool   namespace   log   name   ons   node   

原文地址:http://www.cnblogs.com/wangyiming/p/6576304.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!