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

hihoCoder week6 01背包

时间:2018-11-17 22:17:08      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:const   nbsp   pac   class   problem   链接   ret   bsp   end   

01背包

题目链接 https://hihocoder.com/contest/hiho6/problem/1

 

#include <bits/stdc++.h>
using namespace std;

const int N = 500 + 10;
int need[N], value[N];

int dp[100000+10];

int main ()
{
    int n,V;
    scanf("%d %d", &n, &V);
    for(int i=1;i<=n;i++) 
        scanf("%d %d", &need[i], &value[i]);
    for(int i=1;i<=n;i++) {
        for(int j=V; j>=need[i]; j--) {
            dp[j] = max(dp[j], dp[j-need[i]] +value[i]);
        }
    }
    cout << dp[V] <<endl;
    return 0;
}

 

hihoCoder week6 01背包

标签:const   nbsp   pac   class   problem   链接   ret   bsp   end   

原文地址:https://www.cnblogs.com/Draymonder/p/9975660.html

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