Codeforces 366C - Dima and Salad(DP)

C. Dima and Salad
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
Dima, Inna and Seryozha have gathered in a room. That’s right, someone’s got to go. To cheer Seryozha up and inspire him to have a walk, Inna decided to cook something.

Dima and Seryozha have n fruits in the fridge. Each fruit has two parameters: the taste and the number of calories. Inna decided to make a fruit salad, so she wants to take some fruits from the fridge for it. Inna follows a certain principle as she chooses the fruits: the total taste to the total calories ratio of the chosen fruits must equal k. In other words,這裏寫圖片描述 , where aj is the taste of the j-th chosen fruit and bj is its calories.

Inna hasn’t chosen the fruits yet, she is thinking: what is the maximum taste of the chosen fruits if she strictly follows her principle? Help Inna solve this culinary problem — now the happiness of a young couple is in your hands!

Inna loves Dima very much so she wants to make the salad from at least one fruit.

Input
The first line of the input contains two integers n, k (1 ≤ n ≤ 100, 1 ≤ k ≤ 10). The second line of the input contains n integers a1, a2, …, an (1 ≤ ai ≤ 100) — the fruits’ tastes. The third line of the input contains n integers b1, b2, …, bn (1 ≤ bi ≤ 100) — the fruits’ calories. Fruit number i has taste ai and calories bi.

Output
If there is no way Inna can choose the fruits for the salad, print in the single line number -1. Otherwise, print a single integer — the maximum possible sum of the taste values of the chosen fruits.

Examples
input
3 2
10 8 1
2 7 1
output
18
input
5 3
4 4 4 4 4
2 2 2 2 2
output
-1
Note
In the first test sample we can get the total taste of the fruits equal to 18 if we choose fruit number 1 and fruit number 2, then the total calories will equal 9. The condition fulfills, that’s exactly what Inna wants.

In the second test sample we cannot choose the fruits so as to follow Inna’s principle.

題意:
給出n種物品, 有屬性a和b。
要求挑出部分物品, 使得a的和除以b的和等於k。
要求在此條件下, 可能的a的最大值。

解題思路:
把a[i]看作是價值, 那麼質量就是a[i] - b[i]*k。

正向求一邊01揹包(重量爲正的), 再反向求一次, 那麼結果就是max(dp_pos[i] + dp_neg[i]).

AC代碼:

#include <bits/stdc++.h>

using namespace std;

const int maxn = 1e2+5;

int dp_pos[maxn*maxn];
int dp_neg[maxn*maxn];
int a[maxn];
int b[maxn];
int c[maxn];

int main()
{
    ios::sync_with_stdio(0);

    memset(dp_pos, -0x3f, sizeof(dp_pos));
    memset(dp_neg, -0x3f, sizeof(dp_neg));
    dp_pos[0] = 0;
    dp_neg[0] = 0;

    int n, k;
    cin >> n >> k;
    for(int i = 1; i <= n; i++)
        cin >> a[i];
    for(int i = 1; i <= n; i++)
        cin >> b[i];
    for(int i = 1; i <= n; i++)
        c[i] = a[i] - k * b[i];
    for(int i = 1; i <= n; i++)
        if(c[i] >= 0)
            for(int j = maxn*maxn-1; j >= c[i]; j--)
                dp_pos[j] = max(dp_pos[j], dp_pos[j - c[i]] + a[i]);

    for(int i = 1; i <= n; i++){
        if(c[i] < 0){
            c[i] = -c[i];
            for(int j = maxn*maxn-1; j >= c[i]; j--)
                dp_neg[j] = max(dp_neg[j], dp_neg[j - c[i]] + a[i]);
        }
    }

    int ans = -1;
    for(int i = 0; i <= maxn*maxn - 1; i++){
        if(!dp_pos[i] && !dp_neg[i])
            continue;
        ans = max(ans, dp_pos[i] + dp_neg[i]);
    }
    cout << ans;
    return 0;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章