首页 > 代码库 > hdu1881(贪心+dp)
hdu1881(贪心+dp)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1881
分析:按照结束时间从小到大排序,然后以每个结束点为容量进行01背包,选入的必定符合条件的。
因为可能在某一结束点得到的价值最大,并不是dp[mx]最大容量得到的价值最大,所以要对dp值全部扫一遍得出最大值。
#include <cstdio>#include <cstring>#include <cmath>#include <iostream>#include <algorithm>#include <queue>#include <cstdlib>#include <vector>#include <set>#include <map>#define LL long long#define mod 1000000007#define inf 0x3f3f3f3f#define N 10010using namespace std;struct node{ int w,p,q; bool operator<(const node &a)const { return q<a.q; }}s[50];int dp[2010];int max(int a,int b){ return a>b?a:b;}int main(){ int n; while(scanf("%d",&n)>0) { if(n<0)break; int v=0; for(int i=1;i<=n;i++) scanf("%d%d%d",&s[i].p,&s[i].w,&s[i].q),v=max(v,s[i].q); sort(s+1,s+n+1); memset(dp,0,sizeof(dp)); for(int i=1;i<=n;i++) for(int j=s[i].q;j>=s[i].w;j--) dp[j]=max(dp[j],dp[j-s[i].w]+s[i].p); int mx=-1; for(int i=1;i<=v;i++)mx=max(mx,dp[i]); printf("%d\n",mx); }}
hdu1881(贪心+dp)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。