poj 3161 Milking Time

Posted 啦啦啦天啦噜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poj 3161 Milking Time相关的知识,希望对你有一定的参考价值。

题意:有m段区间选取不相交的多个区间,是的加和最大

思路:真是蠢的要死,变成区间就不会了,其实和lis一样(lis真是最好的算法 )

代码:

#include <set>
#include <map>
#include <queue>
#include <stack>
#include <math.h>
#include <vector>
#include <string>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <iostream>
#include <algorithm>
#define zero(a) fabs(a)<eps
#define max( x, y )  ( ((x) > (y)) ? (x) : (y) )
#define min( x, y )  ( ((x) < (y)) ? (x) : (y) )
#define lowbit(x) (x&(-x))
typedef long long ll;
const double pi=acos(-1.0);
const double eps=1e-8;
const int inf=0x3f3f3f3f;
const ll linf=0x3f3f3f3f3f3f3f3f;
const int maxn = 1007;
using namespace std;

int n,m,k;
struct node{int l,r,val;}a[maxn];
int dp[maxn];
bool cmp(node x,node y)
{
    return x.l<y.l;
}
int main()
{
    while(~scanf("%d%d%d",&n,&m,&k)){
        for(int i=0;i<m;i++){
            scanf("%d%d%d",&a[i].l,&a[i].r,&a[i].val);
            a[i].r+=k;
        }
        sort(a,a+m,cmp);
        memset(dp,0,sizeof(dp));
        for(int i=0;i<m;i++){
            dp[i]=a[i].val;
            for(int j=0;j<i;j++){
                if(a[i].l>=a[j].r){
                    dp[i]=max(dp[i],dp[j]+a[i].val);
                }
            }
        }
        int maxe=0;
        for(int i=0;i<m;i++){
            maxe=max(maxe,dp[i]);
        }
        printf("%d\n",maxe);
    }
    return 0;
}

 

以上是关于poj 3161 Milking Time的主要内容,如果未能解决你的问题,请参考以下文章

Milking Time POJ - 3616

poj 3616 Milking Time

POJ - 3616-Milking Time(DP)

POJ3616 Milking Time —— DP

POJ_3616_Milking Time

poj 3616 Milking Time dp