• POJ 3616 Milking Time 基础DP


                          Milking Time
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 5743   Accepted: 2401

    Description

    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: NM, 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 N hours

    Sample Input

    12 4 2
    1 2 8
    10 12 19
    3 6 24
    7 10 31

    Sample Output

    43

    Source

     
     
     
     
    题意:有一只牛,他在0~N的时间内可以产牛奶,现在有M个区间,你可以指定这M个区间的任意个区间让他去产牛奶,给出这M个区间的开始时间,结束时间,还有在这个区间的时间可以产的牛奶的量。
    有个条件,就是你给他指定的产牛奶的区间每2个之间至少要有R的时间让他休息。
    现在问怎么指定区间让他去产牛奶,可以获得最大的牛奶。
    输出最大的牛奶。
     
    基础DP
    本质:最长上升子序列。
     
    先把区间排序
    设dp[i]表示以第i个区间作为让他产牛奶的最后一个区间,可以获得的最大的牛奶量。
     
     
     1 #include<cstdio>
     2 #include<cstring>
     3 #include<algorithm>
     4 
     5 using namespace std;
     6 
     7 const int maxM=1005;
     8 
     9 long long dp[maxM];
    10 struct Node
    11 {
    12     int u,v;
    13     long long w;
    14 }node[maxM];
    15 
    16 bool cmp(Node a,Node b)
    17 {
    18     if(a.u==b.u)
    19         return a.v<b.v;
    20     else
    21         return a.u<b.u;
    22 }
    23 
    24 int main()
    25 {
    26     int T,M,R;
    27     while(~scanf("%d%d%d",&T,&M,&R))
    28     {
    29         for(int i=0;i<M;i++)
    30         {
    31             scanf("%d%d%lld",&node[i].u,&node[i].v,&node[i].w);
    32         }
    33         sort(node,node+M,cmp);
    34 
    35         for(int i=0;i<M;i++)
    36         {
    37             if(node[i].u>T||node[i].v>T)
    38                 break;
    39             dp[i]=node[i].w;
    40             for(int j=0;j<i;j++)
    41             {
    42                 if(node[j].v+R<=node[i].u&&dp[j]+node[i].w>dp[i])
    43                     dp[i]=dp[j]+node[i].w;
    44             }
    45         }
    46 
    47         long long ans=-1;
    48         for(int i=0;i<M;i++)
    49             if(dp[i]>ans)
    50                 ans=dp[i];
    51         printf("%lld
    ",ans);
    52     }
    53     return 0;
    54 }
    View Code
     
     
     
     
  • 相关阅读:
    数据结构(一)之HelloWord
    关于玩QQ消息导入导出功能的感想!
    关于java.lang.IllegalStateException
    Error querying database. Cause: java.sql.SQLException: ORA-01745: 无效的主机/绑定变量名
    关于SVN更新时文件加锁的小结
    项目中和时间相关的要注意的地方
    项目开发中遇到的小问题及小规范
    世界各国的谷歌网址
    非常不错的IT进阶站点
    CSS 垂直居中
  • 原文地址:https://www.cnblogs.com/-maybe/p/4601141.html
Copyright © 2020-2023  润新知