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

Codeforces Round #214 (Div. 2)---C. Dima and Salad

时间:2015-04-21 22:52:16      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:dp

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.
Sample test(s)
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.

我们把式子变形得到 (a[j]?k?b[j])=0
(a[j]?k?b[j])看成是体积, a[j]当成价值,做01背包
当然体积可能为0,添加一个偏移量,对于体积为负的,循环顺序要改下

/*************************************************************************
    > File Name: CF214-C.cpp
    > Author: ALex
    > Mail: zchao1995@gmail.com 
    > Created Time: 2015年04月21日 星期二 16时40分32秒
 ************************************************************************/

#include <functional>
#include <algorithm>
#include <iostream>
#include <fstream>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <queue>
#include <stack>
#include <map>
#include <bitset>
#include <set>
#include <vector>

using namespace std;

const double pi = acos(-1.0);
const int inf = 0x3f3f3f3f;
const double eps = 1e-15;
typedef long long LL;
typedef pair <int, int> PLL;

const int N = 30010;
int dp[N];
int w[110], c[110];

int main() {
    int n, k;
    while (~scanf("%d%d", &n, &k)) {
        memset(dp, -inf, sizeof(dp));
        dp[10000] = 0;
        for (int i = 1; i <= n; ++i) {
            scanf("%d", &w[i]);
        }
        for (int i = 1; i <= n; ++i) {
            scanf("%d", &c[i]);
            c[i] = w[i] - k * c[i];
        }
        for (int i = 1; i <= n; ++i) {
            if (c[i] >= 0) {
                for (int j = 20000; j >= c[i]; --j) {
                    if (dp[j - c[i]] != -inf) {
                        dp[j] = max(dp[j], dp[j - c[i]] + w[i]);
                    }
                }
            }
            else {
                for (int j = 0; j <= 20000; ++j) {
                    if (dp[j - c[i]] != -inf) {
                        dp[j] = max(dp[j], dp[j - c[i]] + w[i]);
                    }
                }
            }
        }
        if (dp[10000] == 0) {
            dp[10000] = -1;
        }
        printf("%d\n", dp[10000]);
    }
    return 0;
}

Codeforces Round #214 (Div. 2)---C. Dima and Salad

标签:dp

原文地址:http://blog.csdn.net/guard_mine/article/details/45173905

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