码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 3624

时间:2014-07-17 13:05:06      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:os   io   for   问题   re   c   

这道题算是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

标签:os   io   for   问题   re   c   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!