codeforces 687C (动态规划)The Values You Can Make

              The Values You Can Make

Description(点击查看原题

Pari wants to buy an expensive chocolate from Arya. She has n coins, the value of the i-th coin is ci. The price of the chocolate is k, so Pari will take a subset of her coins with sum equal to k and give it to Arya.

Looking at her coins, a question came to her mind: after giving the coins to Arya, what values does Arya can make with them? She is jealous and she doesn't want Arya to make a lot of values. So she wants to know all the values x, such that Arya will be able to make x using some subset of coins with the sum k.

Formally, Pari wants to know the values x such that there exists a subset of coins with the sum k such that some subset of this subset has the sum x, i.e. there is exists some way to pay for the chocolate, such that Arya will be able to make the sum x using these coins.

Input

The first line contains two integers n and k (1  ≤  n, k  ≤  500) — the number of coins and the price of the chocolate, respectively.

Next line will contain n integers c1, c2, ..., cn (1 ≤ ci ≤ 500) — the values of Pari's coins.

It's guaranteed that one can make value k using these coins.

Output

First line of the output must contain a single integer q— the number of suitable values x. Then print q integers in ascending order — the values that Arya can make for some subset of coins of Pari that pays for the chocolate.

Examples

Input

6 18
5 6 1 10 12 2

Output

16
0 1 2 3 5 6 7 8 10 11 12 13 15 16 17 18 

Input

3 50
25 25 50

Output

3
0 25 50 

题目分析

题意:一个人要用最多n个硬币凑出k元的价值,求用于凑成k元的硬币重新组合后,可以得到哪些价值,比如我们用价值为 1,4,5 的硬币凑成了k = 10 ,那么我们使用这三个硬币可以凑成价值有 0,1 ,4 ,5,6, 9,10 ,

解析:记dp[i][j] = 1 表示当前凑成了i 元,然后用凑成了 i 元的硬币可以凑成 j 元的价值,转移方程也很明显,dp[i][j] = max(dp[i-val][j] , dp[i-val][j-val]) ,其中我们将dp初始化为0,表示状态不存在,令dp[0][0] = 1 , 表示初始状态存在,因此状态转移方程也可以理解为只要dp[i-val][j] = 1 或者 dp[i-val][j-val] = 1 ,那么 dp[i][j] 就可以借助价值为val 的硬币从这两个状态转移而来了,所以dp[i][j] = 1。最后我们统计一下有多少 dp[k][j] = 1  并输出即可。

代码区

#include<iostream>
#include<cstdio>
#include<cstring>
//#define LOCAL = 1;
using namespace std;
typedef long long ll;

int n, k;
int dp[510][510];	//dp[i][j] = 1 表示当前凑成了i 元,然后用凑成了 i 元的硬币可以凑成 j 元的价值
int val;

int main()
{
#ifdef LOCAL
	freopen("input.txt", "r", stdin);
	freopen("output.txt", "w", stdout);
#endif
	while (scanf("%d%d", &n, &k) != EOF)
	{
		memset(dp, 0, sizeof(dp));			//初始化为0,表示状态不存在
		dp[0][0] = 1;						//最初的转移状态
		int tot = 0;						//记录数量
		for (int i = 1; i <= n;i++)
		{
			scanf("%d", &val);
			for(int j = k ; j >= val;j --)
			{
				for(int t = k ; t>= 0 ; t --)
				{
					if(dp[j-val][t] == 1)					//前一个状态加上当前的硬币
					{
						if (dp[j][t] == 0 && j == k)		//统计数量,在第一次取得当前状态时统计
							tot++;
						dp[j][t] = 1;
					}
					if(t >= val && dp[j-val][t-val] == 1)	//前一个状态加上当前的硬币后,再用新硬币组成新的价值
					{
						if (dp[j][t] == 0 && j == k)		//统计数量,在第一次取得当前状态时统计
							tot++;
						dp[j][t] = 1;
					}
				}
			}
		}
		printf("%d\n", tot);
		for(int i = 0 ;i <= k ;i ++)	//输出满足的状态
		{
			if (dp[k][i] == 1)
				printf("%d ", i);
		}
		printf("\n");
	}
	return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值