F-Beautiful Land(超大背包) 第十四届华中科技大学程序设计竞赛决赛同步赛

链接:https://www.nowcoder.com/acm/contest/119/F
来源:牛客网

题目描述
It’s universally acknowledged that there’re innumerable trees in the campus of HUST.
Now HUST got a big land whose capacity is C to plant trees. We have n trees which could be plant in it. Each of the trees makes HUST beautiful which determined by the value of the tree. Also each of the trees have an area cost, it means we need to cost ci area of land to plant.
We know the cost and the value of all the trees. Now HUSTers want to maximize the value of trees which are planted in the land. Can you help them?
输入描述:
There are multiple cases.
The first line is an integer T(T≤10), which is the number of test cases.
For each test case, the first line is two number n(1≤n≤100) and C(1≤C≤108), the number of seeds and the capacity of the land.
Then next n lines, each line contains two integer ci(1≤ci≤106) and vi(1≤vi≤100), the space cost and the value of the i-th tree.
输出描述:
For each case, output one integer which means the max value of the trees that can be plant in the land.
示例1
输入

1
3 10
5 10
5 10
4 12
输出

22

[分析]
01背包
但是背包容量超大,使用int来dp超出了内存范围。
这种时候肯定找更小的数字来dp。
思路和01背包一样,不同的是普通01背包dp的是背包容量
这一题dp价值总和。

[代码]

#include<cstdio>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#include<cmath>
#include<cstring>
#include<map>
using namespace std;
#define max(a,b)(a>b?a:b)
#define min(a,b)(a<b?a:b)

typedef long long ll;
ll dp[10005], w[10005];
ll v[10005];

int main()
{
    int t, i, n, sum;
    ll V;
    scanf("%d", &t);
    while (t--)
    {
        scanf("%d%lld", &n, &V);
        sum = 0;
        for (i = 1; i <= n; i++)
        {
            scanf("%I64d%d", &w[i], &v[i]);
            sum = sum + v[i];
        }

        memset(dp, 1000000010, sizeof(dp));
        dp[0] = 0;
        for (i = 1; i <= n; i++)
        {
            for (int j = sum; j >= v[i]; j--)
                dp[j] = min(dp[j], dp[j - v[i]] + w[i]);
        }

        for (i = sum; i >= 0; i--)
        {
            if (dp[i] <= V)
            {
                printf("%d\n", i);
                break;
            }
        }
    }
    return 0;
}

猜你喜欢

转载自blog.csdn.net/q435201823/article/details/80217731