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

E. The Values You Can Make 背包,同时DP

时间:2017-01-21 07:37:12      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:images   int   turn   block   cto   local   oca   isp   space   

http://codeforces.com/problemset/problem/688/E

题目需要在n个数中找出一个集合,使得这个集合的和为val,然后问这些所有集合,能产生多少个不同的和值。

题解是直接两个同时dp,设dp[j][h]表示主集合的和为j,能否产生h这个数字。

把他们看作是两个集合,对于每个数,都可以放在第一个集合,或者放在第一个集合后,再放入第二个集合。

 

技术分享
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <assert.h>
#define IOS ios::sync_with_stdio(false)
using namespace std;
#define inf (0x3f3f3f3f)
typedef long long int LL;


#include <iostream>
#include <sstream>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <string>
#include <bitset>
const int maxn = 500 + 20;
bool dp[maxn][maxn];
set<int>ans;
void work() {
    int n, k;
    cin >> n >> k;
    dp[0][0] = true;
    for (int i = 1; i <= n; ++i) {
        int x;
        cin >> x;
        for (int j = k; j >= 0; --j) {
            for (int h = j; h >= 0; --h) {
                if (j >= x) { //第一个集合
                    dp[j][h] = dp[j][h] || dp[j - x][h];
                }
//                if (h >= x) {
//                    dp[j][h] = dp[j][h] || dp[j][h - x];
//                }
                if (h >= x && j >= x) {
                    dp[j][h] = dp[j][h] || dp[j - x][h - x];
                }

            }
        }
    }
//    cout << dp[5][0] << endl;
    for (int i = 0; i <= k; ++i) {
        if (dp[k][i] == false) continue;
        ans.insert(i);
    }
    cout << ans.size() << endl;
    for (set<int> :: iterator it = ans.begin(); it != ans.end(); ++it) {
        cout << *it << " ";
    }
}

int main() {
#ifdef local
    freopen("data.txt", "r", stdin);
//    freopen("data.txt", "w", stdout);
#endif
    work();
    return 0;
}
View Code

 

E. The Values You Can Make 背包,同时DP

标签:images   int   turn   block   cto   local   oca   isp   space   

原文地址:http://www.cnblogs.com/liuweimingcprogram/p/6329708.html

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