poj 3616 (DP)

题意:

给出m个区间 以及 每个区间的起点 、终点 、权值  m个区间会有重叠

要求从这些区间中选择若干个区间 ,使得这些所选区间的权值和最大

选择要求:1.所选区间无重叠部分  2.两个所选区间的间隔至少为r

思路:

线性结构上的DP 状态定义为: d[i] 代表 从前往后选择 选择到第i个区间时 选择第i个区间的最大权值

转移:

d[i] = max(d[j]+w[i]); 其中d[j]应该满足 end[j] + r <= start[i];

code:

const int maxn = 1005;

int n,m,r;
int d[maxn];
struct interval{
    int s,e,w;
    bool operator < (const interval ei) const{
        return s < ei.s;
    }
}itv[maxn];

void init(){
    for(int i = 1; i <= m; i++){
        scanf("%d%d%d",&itv[i].s,&itv[i].e,&itv[i].w);
    }
}
void solve(){
    sort(itv+1, itv+1+m);
    memset(d, 0, sizeof(d));
    for(int i = 1; i <= m; i++){
        d[i] = max(d[i], itv[i].w);
        for(int j = 1; j <= i; j++){
            if(itv[j].e + r <= itv[i].s){
                d[i] = max(d[i], d[j]+itv[i].w);
            }
        }
    }
    cout << *max_element(d+1, d+1+m) << endl;;
}
int main(){
    while(scanf("%d%d%d",&n,&m,&r) != EOF){
        init();
        solve();
    }
    return 0;
}

脑子要清醒 这种简单的DP应该能容易的识别出它的模型 简单的线性规划 选或不选的问题 很简单的

就是状态转移是不太容易思考 也并不难

最主要的是自己没能准确确定这道题目的思考方向 刚开始猜测八九不离十是DP,但是并不能完全确定 所以还贪心了许久 最终感觉没有办法贪心

想复杂了...

时间: 2024-10-10 10:57:59

poj 3616 (DP)的相关文章

R - Milking Time POJ 3616 ( DP )

R - Milking Time Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u Submit Status Practice POJ 3616 Description Bessie is such a hard-working cow. In fact, she is so focused on maximizing her productivity that she decides to schedul

Milking Time POJ - 3616 dp 感觉像背包

#include<iostream> #include<algorithm> #include<cstring> #include<cstdio> using namespace std; const int N=1010; struct edge{ int start; int end; int w; }e[N]; bool cmp(edge a,edge b) { return a.start<b.start; } int dp[N]; int m

POJ 3616 Milking Time DP题解

典型的给出区间任务和效益值,然后求最大效益值的任务取法. 属于一维DP了. 一维table记录的数据含义:到当前任务的截止时间前的最大效益值是多少. 注意, 这表示当前任务一定要选择,但是最终结果是不一定选择最后一个任务,故此最后需要遍历找到table数组的最大值,当然计算过程中使用一个数记录最终最大值也是可以的. 状态转移方程就是: tbl[i] = MAX({from tbl[0]->tbl[i-1] }+ weight[i] ),即区间0到i-1加上i的当前效益值. #include <

poj 3616 Milking Time dp+树状数组

题意: 给一堆区间,每个区间有开始时间s,结束时间e,和收益w,现在要找一些区间使收益和最大,且区间之间的间隔最小为r. 分析: 这道题用dp做是简单题,用dp+树状数组做是中等题.dp问题的关键是对状态的定义.有两种方法,一:dp[k]表示按开始时间排序到第k个区间能取得的最大收益.二:dp[t]表示在时间t时能获得的最大收益.定义好状态方程就好写了这不再赘述.有趣的是这个时间复杂度.设一共有M个区间,所有区间的最大时间为L,第一种是M^2的,第二种是M*(logL+logM)的,这题M才10

POJ 3616 Milking Time 挤奶问题,带权区间DP

题目链接:POJ 3616 Milking Time Milking Time Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 4837   Accepted: 2034 Description Bessie is such a hard-working cow. In fact, she is so focused on maximizing her productivity that she decides to sc

[2016-03-28][POJ][3616][Milking Time]

时间:2016-03-28 17:27:03 星期一 题目编号:[2016-03-28][POJ][3616][Milking Time] #include <algorithm> #include <cstdio> using namespace std; const int maxm = 1000 + 10; struct Roo{ int l,r,v; bool operator < (const Roo & a)const{ return l < a.l

HDU 1087 &amp;&amp; POJ 2533(DP,最长上升子序列).

~~~~ 两道题的意思差不多,HDU上是求最长上升子序列的和,而POJ上就的是其长度. 貌似还有用二分写的nlogn的算法,不过这俩题n^2就可以过嘛.. ~~~~ 题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=1087 http://poj.org/problem?id=2533 ~~~~ HDU1087: #include<cstdio> #include<cstring> #include<algorithm> #

POJ 3670 &amp;&amp; POJ 3671 (dp)

最长不下降子序列的应用嘛.两题都是一样的. POJ 3670:求给定序列按递增或递减排列时,所需改变的最小的数字的数目. POJ 3671:求给定序列按递增排列时,所需改变的最小的数字的数目. 思路就是求最长不下降子序列,然后剩下的就是需要改变的字母. 最长不下降子序列:(我之前有写过,不懂请戳)http://blog.csdn.net/darwin_/article/details/38360997 POJ 3670: #include<cstdio> #include<cstring

poj 3783 DP 2个鸡蛋扔100层楼的加强版

http://poj.org/problem?id=3783 估计23号之后的排位赛之后我就要退役了,这之前最后再做5天ACM 今天的排位很惨,上次排位也很惨......这道题原来算法课老师讲过,模模糊糊记得方程,但是边界处理有问题, dp[i][j]=min(1+max(dp[k-1][j-1],dp[i-k][j]))   k=1 to 楼数 dp[i][j]:i层楼扔,手里有j个ball 的次数 边界两个:1.dp[1][i]=1,第一层无论手里有几个鸡蛋都是1次,2.dp[i][1]=i