首页 > 其他 > 详细

POJ 3624

时间:2014-07-18 21:02:30      阅读:342      评论:0      收藏:0      [点我收藏+]

这道题算是01背包问题吧,刚开始做DP的题目,那这一题试试也很不错

hand[j]=max(hand[j],hand[j-w[i]]+d[i]);

 

 

#include <iostream>
#include <string.h>
using namespace std;
int hand[12900];
int w[3410],d[3410];
int main(){
    int n,m;
    cin>>n>>m;
    for(int i=1;i<=n;i++){
        cin>>w[i]>>d[i];
    }
    memset(hand,0,sizeof(hand));
    for(int i=1;i<=n;i++){
        for(int j=m;j>=w[i];j--){
            if((hand[j-w[i]]+d[i])>hand[j]){
                hand[j]=hand[j-w[i]]+d[i];
            }
        }
    }
    cout<<hand[m]<<endl;
    return 0;
}

POJ 3624,布布扣,bubuko.com

POJ 3624

原文:http://www.cnblogs.com/Mr-Xu-JH/p/3850407.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!